se-interpreter
se-interpreter copied to clipboard
Interpreter for Selenium Builder JSON scripts based on node.js and wd.
It looks like when storeText is specified by Selenium Builder output, this project interprets it to Text, which is not the same. Is this planned? I saw something in interpreter.js...
While testing a rich web app with lots of DOM updates that don't trigger new page loads, I find myself doing a lot of this in my `"steps"`: ``` {...
I was digging through and noticed storeEval worked (cool) even though it's not declared (not sure of where the abstraction is yet). I also noticed that in Selenium Builder, I...
When trying to execute se-interpreter test.js --browser-browserstack.user="myname" --browser-browserstack.key="123456qwerty", the parameters convert to: ``` "browserstack": {"user": "myname", "key": "123456qwerty"} ``` For browserstack options these would need to be: ``` {"browserstack.user": "myname",...
Failure to start up a test can result in an error message being printed that contains secret info like the Sauce access key. [Example](https://travis-ci.org/jegelstaff/formulize/builds/35738422) ``` 1-install-formulize: Unable to start test...
The color ANSI codes make it hard to read the output in Jenkins and similar tools - it would be great to check the terminal accepts color before displaying colors,...
Looks like the `full_example.json` does not reflect the complete api as there are some step-types missing e.g. - storeElementPresent - assertElementPresent - verifyElementPresent - waitForElementPresent I didn't checked the complete...
Hi, I'm trying to configure the interpreter to run parallel tests in a Travis build. Couldn't find an example of the right syntax for the json version of --parallel=n. Can...
Hi.. I tried to make use of the `--parallel` option and observed some unexpected results.. Running this two simple steps with version `1.0.6` against github and localhost ``` json ......
Hi, We're trying to use SauceLabs' prerun capabilities (runs a program before starting the browser) through se-interpreter. You can search for "pre-run" on this page https://saucelabs.com/docs/additional-config for documentation. Unfortunately, it...