SCG82 on replace-lerna-bootstrap-pnpm
Bump @types/eslint from 8.4.10 … Bump @vitejs/plugin-react from … Bump devtools-protocol from 0.0… and 4 more (compare)
christian-bromann on v7
Use available Cucumber tag `fea… (compare)
christian-bromann on main
Use available Cucumber tag `fea… (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();
class Page {
static open(path) {
if (path === "login") {
return browser.url(awsUrl);