How do I Run Chrome, FF, IE browsers for test execution? I have been using directConnect: true for Chrome and FF; and I'm aware that if this is set when I try and run IE, then it will throw and error. From what I understand, I need to have directConnect: true in order to use Chrome and FF.
I've been trying to figure the conf.js file with multiCapabilities for all 3 browsers, but cant seen to figure how to get all 3 of then to run the test.
multiCapabilities : [ { 'browserName' : 'chrome' }, { 'browserName': 'internet explorer',
'platform': 'ANY',
'version': '11',
},
{ 'browserName': 'firefox'
}
],
Any suggestions please?