Closed
Description
Is-it possible to implement the multiremote inside the WebDriverIO helpers options ?
WebdriverIO allows you to run multiple Selenium sessions in a single test.
Maybe, something like:
"helpers": {
"WebDriverIO": {
"url": "http://localhost:3000/#",
"multiremote": {
"myChromeBrowser": {
"desiredCapabilities": {
"browserName": "chrome"
}
},
"myFirefoxBrowser": {
"desiredCapabilities": {
"browserName": "firefox"
}
}
}
}
},
Thanks a lot for your work.