I can\'t find any information on how to set this up, but it seems like a pretty basic concept, so I\'m sure there\'s an answer out there.
I know how to run protrac
using multiCapabilities will run all the tests in each of the browsers. So the configuration below will run every test twice, once in Firefox and once in Chrome:
multiCapabilities: [{
'browserName': 'chrome'
}, {
'browserName': 'firefox'
}],
If you would rather have each test file just run once, but split up among multiple browsers, then use the splitTestsBetweenCapabilities option:
splitTestsBetweenCapabilities: true
This blog post goes into further detail about the splitTestsBetweenCapabilities