We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f058939 commit 3b92812Copy full SHA for 3b92812
integrations/selenium_grid/download_selenium.py
@@ -0,0 +1,11 @@
1
+""" Download the selenium server jar file """
2
+
3
+import os
4
+from seleniumbase.core import selenium_launcher
5
6
+if not selenium_launcher.is_available_locally():
7
+ selenium_launcher.download_selenium()
8
9
+for filename in os.listdir("."):
10
+ if filename.startswith("selenium-server-standalone-"):
11
+ os.rename(filename, "selenium-server-standalone.jar")
0 commit comments