Skip to content

Commit ebb4e6b

Browse files
authored
Merge pull request #4015 from seleniumbase/wire-mode-edge-fix
Wire Mode Edge Fix
2 parents 4f2caff + eb2d9f7 commit ebb4e6b

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

requirements.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ exceptiongroup>=1.3.0
1111
websockets~=13.1;python_version<"3.9"
1212
websockets>=15.0.1;python_version>="3.9"
1313
filelock~=3.16.1;python_version<"3.9"
14-
filelock>=3.19.1;python_version>="3.9"
14+
filelock~=3.19.1;python_version>="3.9" and python_version<"3.10"
15+
filelock>=3.20.0;python_version>="3.10"
1516
fasteners>=0.20
1617
mycdp>=1.2.0
1718
pynose>=1.5.5
18-
platformdirs>=4.3.6;python_version<"3.9"
19-
platformdirs>=4.4.0;python_version>="3.9"
19+
platformdirs~=4.3.6;python_version<"3.9"
20+
platformdirs~=4.4.0;python_version>="3.9" and python_version<"3.10"
21+
platformdirs>=4.5.0;python_version>="3.10"
2022
typing-extensions~=4.13.2;python_version<"3.9"
2123
typing-extensions>=4.15.0;python_version>="3.9"
2224
sbvirtualdisplay>=1.4.0
@@ -29,7 +31,7 @@ parse-type>=0.6.6
2931
colorama>=0.4.6
3032
pyyaml>=6.0.3
3133
pygments>=2.19.2
32-
pyreadline3>=3.5.3;platform_system=="Windows"
34+
pyreadline3>=3.5.4;platform_system=="Windows"
3335
tabcompleter>=1.4.0
3436
pdbp>=1.7.1
3537
idna==3.10
@@ -78,7 +80,7 @@ PyAutoGUI>=0.9.54;platform_system=="Linux"
7880
markdown-it-py==3.0.0;python_version<"3.10"
7981
markdown-it-py==4.0.0;python_version>="3.10"
8082
mdurl==0.1.2
81-
rich>=14.1.0,<15
83+
rich>=14.2.0,<15
8284

8385
# --- Testing Requirements --- #
8486
# ("pip install -r requirements.txt" also installs this, but "pip install -e ." won't.)

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.42.3"
2+
__version__ = "4.42.4"

seleniumbase/core/browser_launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4317,8 +4317,8 @@ def get_local_driver(
43174317
sys.argv = sys_args # Put back the original sys args
43184318

43194319
# For Microsoft Edge (Chromium) version 80 or higher
4320-
Edge = webdriver.edge.webdriver.WebDriver
4321-
EdgeOptions = webdriver.edge.webdriver.Options
4320+
Edge = webdriver.Edge
4321+
EdgeOptions = webdriver.EdgeOptions
43224322
if local_edgedriver and os.path.exists(local_edgedriver):
43234323
try:
43244324
make_driver_executable_if_not(local_edgedriver)

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,14 @@
158158
'websockets~=13.1;python_version<"3.9"',
159159
'websockets>=15.0.1;python_version>="3.9"',
160160
'filelock~=3.16.1;python_version<"3.9"',
161-
'filelock>=3.19.1;python_version>="3.9"',
161+
'filelock~=3.19.1;python_version>="3.9" and python_version<"3.10"',
162+
'filelock>=3.20.0;python_version>="3.10"',
162163
'fasteners>=0.20',
163164
"mycdp>=1.2.0",
164165
"pynose>=1.5.5",
165-
'platformdirs>=4.3.6;python_version<"3.9"',
166-
'platformdirs>=4.4.0;python_version>="3.9"',
166+
'platformdirs~=4.3.6;python_version<"3.9"',
167+
'platformdirs~=4.4.0;python_version>="3.9" and python_version<"3.10"',
168+
'platformdirs>=4.5.0;python_version>="3.10"',
167169
'typing-extensions~=4.13.2;python_version<"3.9"',
168170
'typing-extensions>=4.15.0;python_version>="3.9"',
169171
"sbvirtualdisplay>=1.4.0",
@@ -176,7 +178,7 @@
176178
'colorama>=0.4.6',
177179
'pyyaml>=6.0.3',
178180
'pygments>=2.19.2',
179-
'pyreadline3>=3.5.3;platform_system=="Windows"',
181+
'pyreadline3>=3.5.4;platform_system=="Windows"',
180182
"tabcompleter>=1.4.0",
181183
"pdbp>=1.7.1",
182184
"idna==3.10",
@@ -225,7 +227,7 @@
225227
'markdown-it-py==3.0.0;python_version<"3.10"',
226228
'markdown-it-py==4.0.0;python_version>="3.10"',
227229
'mdurl==0.1.2',
228-
'rich>=14.1.0,<15',
230+
'rich>=14.2.0,<15',
229231
],
230232
extras_require={
231233
# pip install -e .[allure]

0 commit comments

Comments
 (0)