Skip to content

Commit 713e626

Browse files
authored
Merge pull request #895 from seanpoulter/SELENIUM_VERSION
feat: Bump Selenium from 4.9.0 to 4.10.0
2 parents a706b43 + c245eeb commit 713e626

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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: {

lib/default-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module.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: {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
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} .",

0 commit comments

Comments
 (0)