github-actions[bot] on v8.3.2
v8.3.2 (compare)
github-actions[bot] on main
v8.3.2 (compare)
github-actions[bot] on v8.3.2
christian-bromann on main
allow to set --no-coverage (compare)
github-actions[bot] on v8.3.1
v8.3.1 (compare)
github-actions[bot] on main
v8.3.1 (compare)
github-actions[bot] on v8.3.1
christian-bromann on cb-coverage-collection-fix
christian-bromann on main
[š Bug]: Properly merge covera⦠(compare)
Yeah I had a stab at that but got nowhere unfortunately.
Currently I have
capabilities: [
{
// maxInstances can get overwritten per capability. So if you have an in-house Selenium
// grid with only 5 firefox instances available you can make sure that not more than
// 5 instances get started at a time.
maxInstances: 5,
//
"goog:chromeOptions": {
args: ["use-fake-ui-for-media-stream"],
},
browserName: "chrome",
acceptInsecureCerts: true,
// If outputDir is provided WebdriverIO can capture driver session logs
// it is possible to configure which logTypes to include/exclude.
// excludeDriverLogs: ['*'], // pass '*' to exclude all driver session logs
// excludeDriverLogs: ['bugreport', 'server'],
},
],
And I tried putting in what appeared to be along the lines of what I wanted
capabilities: {
browserA: {
capabilities: {
browserName: 'chrome',
}
},
browserB: {
capabilities: {
browserName: 'chrome'
}
}
},
But then everything stopped working, never even seemed to get the the point in my tests where I would normally execute browser.url(foo)
Given(/^I am logged in as an agent/, () => {
pages["login"].open();