Skip to content
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

feat: Bump Selenium from 4.9.0 to 4.10.0 #895

Merged
merged 1 commit into from
Mar 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading