Skip to content

Latest commit

 

History

History
32 lines (15 loc) · 820 Bytes

README.md

File metadata and controls

32 lines (15 loc) · 820 Bytes

code-export-node-nr-synthetics

New Relic Synthetics language library for Selenium IDE

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

Usage


const  codeExport = require('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
  }
});



See sample usage in New Relic Synthetics formatter for Selenium IDE