Automately - A scalable web automation API for developers
11–15 of 15 posts
Re: Automately - A scalable web automation API for developers
#12What's an automation script in this case?
A simple script written in JavaScript. You write code using our automation API interacting with websites making clicks, anything you would normally do as a normal person interacting with a web browser except using JavaScript to do it! And a lot more!
It looks like a cool idea. All the best.
Re: Automately - A scalable web automation API for developers
#13Example automation script:
println("Opening Google");
browser.openPage("http://www.google.com");
browser.waitForSelector("[name=q]", 2);
browser.getElement("[name=q]").sendKeys("Hello World");
println(browser.getTitle());
It's not much of an example we are accepting early access requests though :) You will definitely get more details on automation scripts.
Re: Automately - A scalable web automation API for developers
#14Re: Automately - A scalable web automation API for developers
#15Please look at selenium webdriver And the webdriver w3c draft API