Skip to content
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
12 changes: 7 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ exceptiongroup>=1.3.0
websockets~=13.1;python_version<"3.9"
websockets>=15.0.1;python_version>="3.9"
filelock~=3.16.1;python_version<"3.9"
filelock>=3.19.1;python_version>="3.9"
filelock~=3.19.1;python_version>="3.9" and python_version<"3.10"
filelock>=3.20.0;python_version>="3.10"
fasteners>=0.20
mycdp>=1.2.0
pynose>=1.5.5
platformdirs>=4.3.6;python_version<"3.9"
platformdirs>=4.4.0;python_version>="3.9"
platformdirs~=4.3.6;python_version<"3.9"
platformdirs~=4.4.0;python_version>="3.9" and python_version<"3.10"
platformdirs>=4.5.0;python_version>="3.10"
typing-extensions~=4.13.2;python_version<"3.9"
typing-extensions>=4.15.0;python_version>="3.9"
sbvirtualdisplay>=1.4.0
Expand All @@ -29,7 +31,7 @@ parse-type>=0.6.6
colorama>=0.4.6
pyyaml>=6.0.3
pygments>=2.19.2
pyreadline3>=3.5.3;platform_system=="Windows"
pyreadline3>=3.5.4;platform_system=="Windows"
tabcompleter>=1.4.0
pdbp>=1.7.1
idna==3.10
Expand Down Expand Up @@ -78,7 +80,7 @@ PyAutoGUI>=0.9.54;platform_system=="Linux"
markdown-it-py==3.0.0;python_version<"3.10"
markdown-it-py==4.0.0;python_version>="3.10"
mdurl==0.1.2
rich>=14.1.0,<15
rich>=14.2.0,<15

# --- Testing Requirements --- #
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.42.3"
__version__ = "4.42.4"
4 changes: 2 additions & 2 deletions seleniumbase/core/browser_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -4317,8 +4317,8 @@ def get_local_driver(
sys.argv = sys_args # Put back the original sys args

# For Microsoft Edge (Chromium) version 80 or higher
Edge = webdriver.edge.webdriver.WebDriver
EdgeOptions = webdriver.edge.webdriver.Options
Edge = webdriver.Edge
EdgeOptions = webdriver.EdgeOptions
if local_edgedriver and os.path.exists(local_edgedriver):
try:
make_driver_executable_if_not(local_edgedriver)
Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,12 +158,14 @@
'websockets~=13.1;python_version<"3.9"',
'websockets>=15.0.1;python_version>="3.9"',
'filelock~=3.16.1;python_version<"3.9"',
'filelock>=3.19.1;python_version>="3.9"',
'filelock~=3.19.1;python_version>="3.9" and python_version<"3.10"',
'filelock>=3.20.0;python_version>="3.10"',
'fasteners>=0.20',
"mycdp>=1.2.0",
"pynose>=1.5.5",
'platformdirs>=4.3.6;python_version<"3.9"',
'platformdirs>=4.4.0;python_version>="3.9"',
'platformdirs~=4.3.6;python_version<"3.9"',
'platformdirs~=4.4.0;python_version>="3.9" and python_version<"3.10"',
'platformdirs>=4.5.0;python_version>="3.10"',
'typing-extensions~=4.13.2;python_version<"3.9"',
'typing-extensions>=4.15.0;python_version>="3.9"',
"sbvirtualdisplay>=1.4.0",
Expand All @@ -176,7 +178,7 @@
'colorama>=0.4.6',
'pyyaml>=6.0.3',
'pygments>=2.19.2',
'pyreadline3>=3.5.3;platform_system=="Windows"',
'pyreadline3>=3.5.4;platform_system=="Windows"',
"tabcompleter>=1.4.0",
"pdbp>=1.7.1",
"idna==3.10",
Expand Down Expand Up @@ -225,7 +227,7 @@
'markdown-it-py==3.0.0;python_version<"3.10"',
'markdown-it-py==4.0.0;python_version>="3.10"',
'mdurl==0.1.2',
'rich>=14.1.0,<15',
'rich>=14.2.0,<15',
],
extras_require={
# pip install -e .[allure]
Expand Down