Skip to content

Commit 0a27176

Browse files
authored
Merge pull request #4203 from seleniumbase/cdp-mode-patch-90
CDP Mode: Patch 90
2 parents dc75ab1 + acf350d commit 0a27176

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

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.45.9"
2+
__version__ = "4.45.10"

seleniumbase/undetected/cdp_driver/cdp_util.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,11 @@ async def start(
565565
platform_var = platform_var[1:-1]
566566
if IS_LINUX and not headless and not headed and not xvfb:
567567
xvfb = True # The default setting on Linux
568-
__activate_virtual_display_as_needed(headless, headed, xvfb, xvfb_metrics)
568+
if not host or not port:
569+
# The browser hasn't been launched yet. (May need a virtual display)
570+
__activate_virtual_display_as_needed(
571+
headless, headed, xvfb, xvfb_metrics
572+
)
569573
if proxy and "@" in str(proxy):
570574
user_with_pass = proxy.split("@")[0]
571575
if ":" in user_with_pass:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@
259259
# (An optional library for parsing PDF files.)
260260
"pdfminer": [
261261
'pdfminer.six==20251107;python_version<"3.10"',
262-
'pdfminer.six==20251230;python_version>="3.10"',
262+
'pdfminer.six==20260107;python_version>="3.10"',
263263
'cryptography==46.0.3',
264264
'cffi==2.0.0',
265265
'pycparser==2.23',

0 commit comments

Comments
 (0)