Skip to content

tanben/code-export-node-nr-synthetics

Repository files navigation

code-export-node-nr-synthetics

NPM Version

New Relic Synthetics language library for Selenium IDE

This library implements the Selenium IDE code export framework see details here

Usage


const  codeExport = require('@tanben/code-export-node-nr-synthetics')


  if (message.action === 'export') {
    let funcExport = (typeof message.options.suite != 'undefined')?codeExport.emitSuite : codeExport.emitTest
    funcExport(parseMessage(message)).then( sendResponse)
    return true
  }
});