File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ async function myFn() {
2727 const details = await selenium .install ({
2828 // check for more recent versions of selenium here:
2929 // https://selenium-release.storage.googleapis.com/index.html
30- version: process .env .SELENIUM_VERSION || ' 4.9 .0' ,
30+ version: process .env .SELENIUM_VERSION || ' 4.10 .0' ,
3131 baseURL: ' https://selenium-release.storage.googleapis.com' ,
3232 drivers: {
3333 chrome: {
Original file line number Diff line number Diff line change 11module . exports = ( ) => {
22 return {
33 baseURL : 'https://github.com/SeleniumHQ/selenium/releases/download' ,
4- version : process . env . SELENIUM_VERSION || '4.9 .0' ,
4+ version : process . env . SELENIUM_VERSION || '4.10 .0' ,
55
66 /** @type {import("./start").Drivers } */
77 drivers : {
Original file line number Diff line number Diff line change 77 "build" : " tsc -p ." ,
88 "start" : " DEBUG=selenium-standalone:* ./bin/selenium-standalone install && DEBUG=selenium-standalone:* ./bin/selenium-standalone start" ,
99 "test" : " run-s test:*" ,
10- "test:v4" : " cross-env-shell SELENIUM_VERSION=4.9 .0 \" ./bin/selenium-standalone install && nyc --reporter=text --reporter=html mocha --timeout=60000\" " ,
11- "test:v3" : " cross-env-shell SELENIUM_VERSION=3.141.59 \" ./bin/selenium-standalone install && mocha 'test/programmatic.js' --timeout=60000\" " ,
10+ "test:v4" : " cross-env SELENIUM_VERSION=4.10 .0 ./bin/selenium-standalone install && nyc --reporter=text --reporter=html mocha --timeout=60000" ,
11+ "test:v3" : " cross-env SELENIUM_VERSION=3.141.59 ./bin/selenium-standalone install && mocha 'test/programmatic.js' --timeout=60000" ,
1212 "docker:build" : " run-s docker:build:*" ,
1313 "docker:build:latest" : " docker build -t webdriverio/${npm_package_name}:latest --cache-from webdriverio/${npm_package_name}:latest ." ,
1414 "docker:build:tag" : " docker build -t webdriverio/${npm_package_name}:${npm_package_version} --cache-from webdriverio/${npm_package_name}:${npm_package_version} ." ,
You can’t perform that action at this time.
0 commit comments