A program which allows you to write javascript code to drive the Chrome Browser using Selenium. Main purpose of the program is to ease development of scripts that allow you to automate usage of websites.
The program is built using Maven. Build it as follows:
mvn clean packageYou should have a zorb-<version>-jar-with-dependencies.jar in the target directory. You can run it as follows to launch a REPL shell (Read-Eval-Print-Loop):
java -cp target/zorb-0.1.0-SNAPSHOT-jar-with-dependencies.jar zorb.appExample scripts are located in examples. Take a look and use as a guide to develop your own. To run a script, say to check gmail, run the script gmail.js as follows. The password is for logging into your mail account:
... zorb.app gmail.js emailAddr passwordAlways looking for feedback, ideas for writing scripts, contributions, etc. You are welcome.