Skip to content

Commit 41252e7

Browse files
committed
Update code to match the latest version of selenium
1 parent 69a3917 commit 41252e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

seleniumbase/console_scripts/sb_install.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ def main():
131131
download_url = ("https://download.microsoft.com/download/"
132132
"%s/%s" % (version_code, file_name))
133133
elif name == "iedriver":
134-
major_version = "3.11"
135-
full_version = "3.11.1"
134+
major_version = "3.14"
135+
full_version = "3.14.0"
136136
if "win32" in sys_plat:
137137
file_name = "IEDriverServer_Win32_%s.zip" % full_version
138138
elif "win64" in sys_plat or "x64" in sys_plat:

seleniumbase/utilities/selenium_grid/download_selenium_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
from urllib.request import urlopen
99

1010
SELENIUM_JAR = ("http://selenium-release.storage.googleapis.com"
11-
"/3.11/selenium-server-standalone-3.11.0.jar")
12-
JAR_FILE = "selenium-server-standalone-3.11.0.jar"
11+
"/3.14/selenium-server-standalone-3.14.0.jar")
12+
JAR_FILE = "selenium-server-standalone-3.14.0.jar"
1313
RENAMED_JAR_FILE = "selenium-server-standalone.jar"
1414

1515
dir_path = os.path.dirname(os.path.realpath(__file__))

0 commit comments

Comments
 (0)