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 seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "4.45.9"
__version__ = "4.45.10"
6 changes: 5 additions & 1 deletion seleniumbase/undetected/cdp_driver/cdp_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,11 @@ async def start(
platform_var = platform_var[1:-1]
if IS_LINUX and not headless and not headed and not xvfb:
xvfb = True # The default setting on Linux
__activate_virtual_display_as_needed(headless, headed, xvfb, xvfb_metrics)
if not host or not port:
# The browser hasn't been launched yet. (May need a virtual display)
__activate_virtual_display_as_needed(
headless, headed, xvfb, xvfb_metrics
)
if proxy and "@" in str(proxy):
user_with_pass = proxy.split("@")[0]
if ":" in user_with_pass:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@
# (An optional library for parsing PDF files.)
"pdfminer": [
'pdfminer.six==20251107;python_version<"3.10"',
'pdfminer.six==20251230;python_version>="3.10"',
'pdfminer.six==20260107;python_version>="3.10"',
'cryptography==46.0.3',
'cffi==2.0.0',
'pycparser==2.23',
Expand Down