Skip to content

Instantly share code, notes, and snippets.

@stoshiya
Created May 7, 2014 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stoshiya/bb155e6480891a022a0f to your computer and use it in GitHub Desktop.
Save stoshiya/bb155e6480891a022a0f to your computer and use it in GitHub Desktop.
var client = require('webdriverjs').remote({
desiredCapabilities: {
browserName: 'phantomejs'
},
logLeve: 'silent'
});
client.init();
client
.url('http://www.google.com')
.pause(3000)
.getTitle(function(err,title) {
console.log(title);
})
.end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment