-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
browserVersion: insiders fails #124
Comments
Using the following import type { Options } from "@wdio/types";
export const config: Options.Testrunner = {
runner: "local",
autoCompileOpts: {
autoCompile: true,
tsNodeOpts: {
project: "./tsconfig.json",
transpileOnly: true,
},
},
specs: ["./test/specs/**/*.ts"],
exclude: [],
maxInstances: 10,
capabilities: [
{
browserName: "chrome",
browserVersion: "insiders",
"wdio:vscodeOptions": {
userSettings: {
"editor.fontSize": 14,
},
},
},
],
logLevel: "info",
bail: 0,
waitforTimeout: 10000,
connectionRetryTimeout: 120000,
connectionRetryCount: 3,
services: ["vscode"],
framework: "mocha",
reporters: ["spec"],
mochaOpts: {
ui: "bdd",
timeout: 60000,
},
}; Produces the following error:
I traced this back to https://github.com/webdriverio-community/wdio-vscode-service/blob/main/src/launcher.ts#L267 : the string https://update.code.visualstudio.com/api/update/web-standalone/insiders/latest Not sure if there's anything else, I did not debug this extensively |
Version:
wdio-vscode-service": "^6.1.0
When running with
browserVersion: "insiders"
I hit the following error:Running with
browserVersion: "stable"
works as expected.The text was updated successfully, but these errors were encountered: