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() {
27
27
const details = await selenium .install ({
28
28
// check for more recent versions of selenium here:
29
29
// 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' ,
31
31
baseURL: ' https://selenium-release.storage.googleapis.com' ,
32
32
drivers: {
33
33
chrome: {
Original file line number Diff line number Diff line change 1
1
module . exports = ( ) => {
2
2
return {
3
3
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' ,
5
5
6
6
/** @type {import("./start").Drivers } */
7
7
drivers : {
Original file line number Diff line number Diff line change 7
7
"build" : " tsc -p ." ,
8
8
"start" : " DEBUG=selenium-standalone:* ./bin/selenium-standalone install && DEBUG=selenium-standalone:* ./bin/selenium-standalone start" ,
9
9
"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" ,
12
12
"docker:build" : " run-s docker:build:*" ,
13
13
"docker:build:latest" : " docker build -t webdriverio/${npm_package_name}:latest --cache-from webdriverio/${npm_package_name}:latest ." ,
14
14
"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