Currently, I have set up Protractor to run on our integration server. In the protractor.conf.js file, I have configured the multiCapabilities as follows:
multiCapabilities: [{
'browserName': 'firefox',
'platform': 'MAC'
}, {
'browserName': 'chrome',
'platform': 'MAC'
}]
However, when running locally from the command line, I would like to override these settings. I have attempted the following command without success:
protractor --verbose --browser=chrome
Question: How can I switch to using only a single instance of Chrome when running locally from the command line?