Skip to content

Commit

Permalink
Merge pull request #895 from seanpoulter/SELENIUM_VERSION
Browse files Browse the repository at this point in the history
feat: Bump Selenium from 4.9.0 to 4.10.0
  • Loading branch information
seanpoulter authored Mar 24, 2024
2 parents a706b43 + c245eeb commit 713e626
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function myFn() {
const details = await selenium.install({
// check for more recent versions of selenium here:
// https://selenium-release.storage.googleapis.com/index.html
version: process.env.SELENIUM_VERSION || '4.9.0',
version: process.env.SELENIUM_VERSION || '4.10.0',
baseURL: 'https://selenium-release.storage.googleapis.com',
drivers: {
chrome: {
Expand Down
2 changes: 1 addition & 1 deletion lib/default-config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = () => {
return {
baseURL: 'https://github.com/SeleniumHQ/selenium/releases/download',
version: process.env.SELENIUM_VERSION || '4.9.0',
version: process.env.SELENIUM_VERSION || '4.10.0',

/** @type {import("./start").Drivers} */
drivers: {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"build": "tsc -p .",
"start": "DEBUG=selenium-standalone:* ./bin/selenium-standalone install && DEBUG=selenium-standalone:* ./bin/selenium-standalone start",
"test": "run-s test:*",
"test:v4": "cross-env-shell SELENIUM_VERSION=4.9.0 \"./bin/selenium-standalone install && nyc --reporter=text --reporter=html mocha --timeout=60000\"",
"test:v3": "cross-env-shell SELENIUM_VERSION=3.141.59 \"./bin/selenium-standalone install && mocha 'test/programmatic.js' --timeout=60000\"",
"test:v4": "cross-env SELENIUM_VERSION=4.10.0 ./bin/selenium-standalone install && nyc --reporter=text --reporter=html mocha --timeout=60000",
"test:v3": "cross-env SELENIUM_VERSION=3.141.59 ./bin/selenium-standalone install && mocha 'test/programmatic.js' --timeout=60000",
"docker:build": "run-s docker:build:*",
"docker:build:latest": "docker build -t webdriverio/${npm_package_name}:latest --cache-from webdriverio/${npm_package_name}:latest .",
"docker:build:tag": "docker build -t webdriverio/${npm_package_name}:${npm_package_version} --cache-from webdriverio/${npm_package_name}:${npm_package_version} .",
Expand Down

0 comments on commit 713e626

Please sign in to comment.