0.0.11 • Published 2 years ago

ezngo-relianize v0.0.11

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

Relianize

Exports Selenium IDE projects (.ride) to executable javascript code

Usage

import ezngo-relianize from "./path/to/ezngo-relianize";

const file = JSON.parse(fs.readFileSync("project.ride").toString());
ezngo-relianize(file).then(test => { // code
  fs.writeFileSync(file.name + ".test.js", test);
});

Republish

$npm login
$npm version patch
$npm publish