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
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pyyaml>=6.0.3
pygments>=2.19.2
pyreadline3>=3.5.4;platform_system=="Windows"
tabcompleter>=1.4.0
pdbp>=1.8.0
pdbp>=1.8.1
idna>=3.11
chardet==5.2.0
charset-normalizer>=3.4.4,<4
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.44.4"
__version__ = "4.44.5"
4 changes: 2 additions & 2 deletions seleniumbase/core/browser_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -3255,8 +3255,8 @@ def get_driver(
proxy_pass = None
proxy_scheme = "http"
if proxy_string:
# (The code below was for the Chrome 137 extension fix)
# sb_config._cdp_proxy = proxy_string
# (The line below is for the Chrome 142 proxy auth fix)
sb_config._cdp_proxy = proxy_string
username_and_password = None
if "@" in proxy_string:
# Format => username:password@hostname:port
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
'pygments>=2.19.2',
'pyreadline3>=3.5.4;platform_system=="Windows"',
"tabcompleter>=1.4.0",
"pdbp>=1.8.0",
"pdbp>=1.8.1",
"idna>=3.11",
'chardet==5.2.0',
'charset-normalizer>=3.4.4,<4',
Expand Down