I am on ubuntu 14.04. This is my code:
var webdriverio = require('webdriverio');
var options = {
desiredCapabilities: {
browserName: 'firefox'
}
}
webdriverio
.remote(options)
.init()
.url('http://www.google.com')
.title(function(err, res) {
console.log(res.value)
})
.end();
When the browser window pops up nothing happens. No page is loaded and the url bar is blank. There is no error either. Does anyone know what im doing wrong?