We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Correct me if I'm wrong, but shouldn't the following work:
var browser = tobi.createBrowser(80, 'http://www.google.com); browser.click("input[name=btnG"])
or
browser.get('/', function(res, $){ browser.click("input[name=btnG"]) });
Both are giving me an uncaught exception.
The text was updated successfully, but these errors were encountered:
Added Google example. Closed by 7234bff
seems fine to me :)
Sorry, something went wrong.
dont forget everything is async so you need a callback
No branches or pull requests
Correct me if I'm wrong, but shouldn't the following work:
var browser = tobi.createBrowser(80, 'http://www.google.com);
browser.click("input[name=btnG"])
or
browser.get('/', function(res, $){
browser.click("input[name=btnG"])
});
Both are giving me an uncaught exception.
The text was updated successfully, but these errors were encountered: