Skip to content

Instantly share code, notes, and snippets.

@LottieVixen
Created June 2, 2016 02:59
Show Gist options
  • Select an option

  • Save LottieVixen/5493ca816f339c612effdf42a2039560 to your computer and use it in GitHub Desktop.

Select an option

Save LottieVixen/5493ca816f339c612effdf42a2039560 to your computer and use it in GitHub Desktop.
var webdriverio = require('webdriverio');
//var webdriverio = require('selenium-webdriver');
var options = {
desiredCapabilities: {
browserName: 'firefox'
}
};
webdriverio
.remote(options)
.init()
.url('https://www.seek.com.au/login')
.getTitle().then(function(title) {
console.log('Title was: ' + title);
})
.setValue('#Email', 'Username')
.setValue('#Pass','Password')
.submitForm('#signInForm');
//.end();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment