3.17.0 • Published 4 years ago

selianize-step v3.17.0

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

Selianize

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

Usage

import selianize from "./path/to/selianize";

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