Skip to content

Commit 905c5b7

Browse files
authored
Merge pull request #4067 from seleniumbase/cdp-mode-patch-69
CDP Mode: Patch 69
2 parents d4fc311 + 9190ae2 commit 905c5b7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pyyaml>=6.0.3
3333
pygments>=2.19.2
3434
pyreadline3>=3.5.4;platform_system=="Windows"
3535
tabcompleter>=1.4.0
36-
pdbp>=1.8.0
36+
pdbp>=1.8.1
3737
idna>=3.11
3838
chardet==5.2.0
3939
charset-normalizer>=3.4.4,<4

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.44.4"
2+
__version__ = "4.44.5"

seleniumbase/core/browser_launcher.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3255,8 +3255,8 @@ def get_driver(
32553255
proxy_pass = None
32563256
proxy_scheme = "http"
32573257
if proxy_string:
3258-
# (The code below was for the Chrome 137 extension fix)
3259-
# sb_config._cdp_proxy = proxy_string
3258+
# (The line below is for the Chrome 142 proxy auth fix)
3259+
sb_config._cdp_proxy = proxy_string
32603260
username_and_password = None
32613261
if "@" in proxy_string:
32623262
# Format => username:password@hostname:port

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182
'pygments>=2.19.2',
183183
'pyreadline3>=3.5.4;platform_system=="Windows"',
184184
"tabcompleter>=1.4.0",
185-
"pdbp>=1.8.0",
185+
"pdbp>=1.8.1",
186186
"idna>=3.11",
187187
'chardet==5.2.0',
188188
'charset-normalizer>=3.4.4,<4',

0 commit comments

Comments
 (0)