So whenever I run my conf.js file the WebDriver instance start but then it timeouts :(. (See image attached)
Chrome not reachable is the result.
My environment is setting this way:
CHROMEDRIVER 2.26
selenium-server-standalone-2.53.1
CHROME BROWSER INSTALLED 55
Protractor 5.0.0
This is my conf.js file
exports.config = {
seleniumAddress: 'http://localhost:4444/wd/hub/',
specs: ['./reporting/example.js'],
capabilities: {
'browserName': 'chrome',
chromeOnly:true ,
directConnect: true,
'chromeOptions': {'args': ['show-fps-counter=true']}
},
onPrepare: function(){
browser.driver.manage().window().setPosition(0.0);
browser.driver.manage().window().setSize(1280.720);
}
}
jasmineNodeOpts: { showColors: true, defaultTimeoutInterval: 100000, isVerbose: true }- Barney