Skip to content

Commit d0625e8

Browse files
authored
Merge pull request #3235 from seleniumbase/cdp-mode-patch-5
CDP Mode - Patch 5
2 parents 533619d + 7d50bb6 commit d0625e8

File tree

9 files changed

+65
-183
lines changed

9 files changed

+65
-183
lines changed

examples/cdp_mode/raw_async.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ async def main():
5252
sb.sleep(2.5)
5353
sb.remove_elements("msm-cookie-banner")
5454
sb.sleep(1.5)
55-
sb.press_keys('input[data-test-id*="search"]', "Amsterdam")
55+
location = "Amsterdam"
56+
sb.press_keys('input[data-test-id*="search"]', location)
57+
sb.sleep(1)
58+
sb.click('input[data-test-id*="search"]')
5659
sb.sleep(2)
5760
sb.click('span[data-test-id*="autocomplete"]')
5861
sb.sleep(5)

examples/cdp_mode/raw_cdp.py

+2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ def main():
2424
sb.sleep(1.5)
2525
location = "Amsterdam"
2626
sb.press_keys('input[data-test-id*="search"]', location)
27+
sb.sleep(1)
28+
sb.click('input[data-test-id*="search"]')
2729
sb.sleep(2)
2830
sb.click('span[data-test-id*="autocomplete"]')
2931
sb.sleep(5)

examples/cdp_mode/raw_cdp_with_sb.py

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
sb.sleep(1.5)
1515
location = "Amsterdam"
1616
sb.press_keys('input[data-test-id*="search"]', location)
17+
sb.sleep(1)
18+
sb.click('input[data-test-id*="search"]')
1719
sb.sleep(2)
1820
sb.click('span[data-test-id*="autocomplete"]')
1921
sb.sleep(5)

seleniumbase/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.32.4"
2+
__version__ = "4.32.5"

seleniumbase/core/browser_launcher.py

+38-2
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,33 @@ def uc_open_with_cdp_mode(driver, url=None):
542542
driver.cdp_base = loop.run_until_complete(
543543
cdp_util.start(host=cdp_host, port=cdp_port)
544544
)
545+
loop.run_until_complete(driver.cdp_base.wait(0))
545546

547+
if (
548+
"chrome-extension://" in str(driver.cdp_base.main_tab)
549+
and len(driver.cdp_base.tabs) >= 2
550+
):
551+
with suppress(Exception):
552+
loop.run_until_complete(driver.cdp_base.main_tab.close())
553+
554+
for tab in driver.cdp_base.tabs[-1::-1]:
555+
if "chrome-extension://" not in str(tab):
556+
loop.run_until_complete(tab.activate())
557+
break
558+
559+
page_tab = None
560+
if "chrome-extension://" not in str(driver.cdp_base.tabs[-1]):
561+
page_tab = driver.cdp_base.tabs[-1]
562+
else:
563+
for tab in driver.cdp_base.tabs:
564+
if "chrome-extension://" not in str(tab):
565+
page_tab = tab
566+
break
567+
if page_tab:
568+
loop.run_until_complete(page_tab.aopen())
569+
loop.run_until_complete(page_tab.activate())
570+
571+
loop.run_until_complete(driver.cdp_base.update_targets())
546572
page = loop.run_until_complete(driver.cdp_base.get(url))
547573
loop.run_until_complete(page.activate())
548574
if not safe_url:
@@ -1106,13 +1132,23 @@ def _uc_gui_click_captcha(
11061132
frame = '[data-callback="onCaptchaSuccess"]'
11071133
else:
11081134
return
1109-
if driver.is_element_present('form[class*=center]'):
1135+
if (
1136+
driver.is_element_present("form")
1137+
and (
1138+
driver.is_element_present('form[class*="center"]')
1139+
or driver.is_element_present('form[class*="right"]')
1140+
or driver.is_element_present('form div[class*="center"]')
1141+
or driver.is_element_present('form div[class*="right"]')
1142+
)
1143+
):
11101144
script = (
1111-
"""var $elements = document.querySelectorAll('form');
1145+
"""var $elements = document.querySelectorAll(
1146+
'form[class], form div[class]');
11121147
var index = 0, length = $elements.length;
11131148
for(; index < length; index++){
11141149
the_class = $elements[index].getAttribute('class');
11151150
new_class = the_class.replaceAll('center', 'left');
1151+
new_class = new_class.replaceAll('right', 'left');
11161152
$elements[index].setAttribute('class', new_class);}"""
11171153
)
11181154
if __is_cdp_swap_needed(driver):

seleniumbase/fixtures/base_case.py

-84
Original file line numberDiff line numberDiff line change
@@ -4090,90 +4090,6 @@ def get_new_driver(
40904090
"Browser: {%s} is not a valid browser option. "
40914091
"Valid options = {%s}" % (browser, valid_browsers)
40924092
)
4093-
# Fix Chrome-130 issues by creating a user-data-dir in advance
4094-
if (
4095-
undetectable
4096-
and (
4097-
not user_data_dir
4098-
or not os.path.exists(user_data_dir)
4099-
or not any(os.scandir(user_data_dir))
4100-
)
4101-
and self.browser == "chrome"
4102-
and shared_utils.is_chrome_130_or_newer(binary_location)
4103-
):
4104-
import tempfile
4105-
if not user_data_dir:
4106-
user_data_dir = os.path.normpath(tempfile.mkdtemp())
4107-
self.user_data_dir = user_data_dir
4108-
sb_config.user_data_dir = user_data_dir
4109-
try:
4110-
decoy_driver = browser_launcher.get_driver(
4111-
browser_name=browser_name,
4112-
headless=False,
4113-
locale_code=locale_code,
4114-
use_grid=use_grid,
4115-
protocol=protocol,
4116-
servername=servername,
4117-
port=port,
4118-
proxy_string=proxy_string,
4119-
proxy_bypass_list=proxy_bypass_list,
4120-
proxy_pac_url=proxy_pac_url,
4121-
multi_proxy=multi_proxy,
4122-
user_agent=user_agent,
4123-
cap_file=cap_file,
4124-
cap_string=cap_string,
4125-
recorder_ext=recorder_ext,
4126-
disable_cookies=disable_cookies,
4127-
disable_js=disable_js,
4128-
disable_csp=disable_csp,
4129-
enable_ws=enable_ws,
4130-
enable_sync=enable_sync,
4131-
use_auto_ext=use_auto_ext,
4132-
undetectable=undetectable,
4133-
uc_cdp_events=uc_cdp_events,
4134-
uc_subprocess=uc_subprocess,
4135-
log_cdp_events=log_cdp_events,
4136-
no_sandbox=no_sandbox,
4137-
disable_gpu=disable_gpu,
4138-
headless1=False,
4139-
headless2=True,
4140-
incognito=incognito,
4141-
guest_mode=guest_mode,
4142-
dark_mode=dark_mode,
4143-
devtools=devtools,
4144-
remote_debug=remote_debug,
4145-
enable_3d_apis=enable_3d_apis,
4146-
swiftshader=swiftshader,
4147-
ad_block_on=ad_block_on,
4148-
host_resolver_rules=host_resolver_rules,
4149-
block_images=block_images,
4150-
do_not_track=do_not_track,
4151-
chromium_arg="decoy",
4152-
firefox_arg=firefox_arg,
4153-
firefox_pref=firefox_pref,
4154-
user_data_dir=user_data_dir,
4155-
extension_zip=None,
4156-
extension_dir=None,
4157-
disable_features=disable_features,
4158-
binary_location=binary_location,
4159-
driver_version=driver_version,
4160-
page_load_strategy=page_load_strategy,
4161-
use_wire=use_wire,
4162-
external_pdf=external_pdf,
4163-
test_id=test_id,
4164-
mobile_emulator=is_mobile,
4165-
device_width=d_width,
4166-
device_height=d_height,
4167-
device_pixel_ratio=d_p_r,
4168-
browser=browser_name,
4169-
)
4170-
time.sleep(0.16)
4171-
except Exception:
4172-
pass
4173-
finally:
4174-
with suppress(Exception):
4175-
decoy_driver.quit()
4176-
time.sleep(0.08)
41774093
# Launch a web browser
41784094
new_driver = browser_launcher.get_driver(
41794095
browser_name=browser_name,

seleniumbase/plugins/driver_manager.py

+1-89
Original file line numberDiff line numberDiff line change
@@ -233,9 +233,9 @@ def Driver(
233233
wire (bool): Shortcut / Duplicate of "use_wire".
234234
pls (str): Shortcut / Duplicate of "page_load_strategy".
235235
"""
236-
from contextlib import suppress
237236
from seleniumbase import config as sb_config
238237
from seleniumbase.config import settings
238+
from seleniumbase.core import browser_launcher
239239
from seleniumbase.fixtures import constants
240240
from seleniumbase.fixtures import shared_utils
241241

@@ -790,94 +790,6 @@ def Driver(
790790
browser_name = browser
791791

792792
# Launch a web browser
793-
from seleniumbase.core import browser_launcher
794-
795-
# Fix Chrome-130 issues by creating a user-data-dir in advance
796-
if (
797-
undetectable
798-
and (
799-
not user_data_dir
800-
or not os.path.exists(user_data_dir)
801-
or not any(os.scandir(user_data_dir))
802-
)
803-
and browser == "chrome"
804-
and shared_utils.is_chrome_130_or_newer(binary_location)
805-
):
806-
import tempfile
807-
import time
808-
if not user_data_dir:
809-
user_data_dir = (
810-
os.path.normpath(tempfile.mkdtemp())
811-
)
812-
try:
813-
decoy_driver = browser_launcher.get_driver(
814-
browser_name=browser_name,
815-
headless=False,
816-
locale_code=locale_code,
817-
use_grid=use_grid,
818-
protocol=protocol,
819-
servername=servername,
820-
port=port,
821-
proxy_string=proxy_string,
822-
proxy_bypass_list=proxy_bypass_list,
823-
proxy_pac_url=proxy_pac_url,
824-
multi_proxy=multi_proxy,
825-
user_agent=user_agent,
826-
cap_file=cap_file,
827-
cap_string=cap_string,
828-
recorder_ext=recorder_ext,
829-
disable_cookies=disable_cookies,
830-
disable_js=disable_js,
831-
disable_csp=disable_csp,
832-
enable_ws=enable_ws,
833-
enable_sync=enable_sync,
834-
use_auto_ext=use_auto_ext,
835-
undetectable=undetectable,
836-
uc_cdp_events=uc_cdp_events,
837-
uc_subprocess=uc_subprocess,
838-
log_cdp_events=log_cdp_events,
839-
no_sandbox=no_sandbox,
840-
disable_gpu=disable_gpu,
841-
headless1=False,
842-
headless2=True,
843-
incognito=incognito,
844-
guest_mode=guest_mode,
845-
dark_mode=dark_mode,
846-
devtools=devtools,
847-
remote_debug=remote_debug,
848-
enable_3d_apis=enable_3d_apis,
849-
swiftshader=swiftshader,
850-
ad_block_on=ad_block_on,
851-
host_resolver_rules=host_resolver_rules,
852-
block_images=block_images,
853-
do_not_track=do_not_track,
854-
chromium_arg="decoy",
855-
firefox_arg=firefox_arg,
856-
firefox_pref=firefox_pref,
857-
user_data_dir=user_data_dir,
858-
extension_zip=None,
859-
extension_dir=None,
860-
disable_features=disable_features,
861-
binary_location=binary_location,
862-
driver_version=driver_version,
863-
page_load_strategy=page_load_strategy,
864-
use_wire=use_wire,
865-
external_pdf=external_pdf,
866-
test_id=test_id,
867-
mobile_emulator=is_mobile,
868-
device_width=d_width,
869-
device_height=d_height,
870-
device_pixel_ratio=d_p_r,
871-
browser=browser_name,
872-
)
873-
time.sleep(0.16)
874-
except Exception:
875-
pass
876-
finally:
877-
with suppress(Exception):
878-
decoy_driver.quit()
879-
time.sleep(0.08)
880-
881793
driver = browser_launcher.get_driver(
882794
browser_name=browser_name,
883795
headless=headless,

seleniumbase/undetected/__init__.py

+16-5
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ def __init__(
235235
"--no-first-run",
236236
"--no-service-autorun",
237237
"--password-store=basic",
238+
"--profile-directory=Default",
238239
]
239240
)
240241
options.add_argument(
@@ -423,7 +424,9 @@ def reconnect(self, timeout=0.1):
423424
- Recreates the session."""
424425
if hasattr(self, "service"):
425426
with suppress(Exception):
426-
self.service.stop()
427+
if self.service.is_connectable():
428+
self.stop_client()
429+
self.service.stop()
427430
if isinstance(timeout, str):
428431
if timeout.lower() == "breakpoint":
429432
breakpoint() # To continue:
@@ -437,7 +440,9 @@ def reconnect(self, timeout=0.1):
437440
with suppress(Exception):
438441
if self.current_url.startswith("chrome-extension://"):
439442
self.close()
440-
self.service.stop()
443+
if self.service.is_connectable():
444+
self.stop_client()
445+
self.service.stop()
441446
self.service.start()
442447
self.start_session()
443448
self._is_connected = True
@@ -447,7 +452,9 @@ def disconnect(self):
447452
To use driver methods again, you MUST call driver.connect()"""
448453
if hasattr(self, "service"):
449454
with suppress(Exception):
450-
self.service.stop()
455+
if self.service.is_connectable():
456+
self.stop_client()
457+
self.service.stop()
451458
self._is_connected = False
452459

453460
def connect(self):
@@ -461,7 +468,9 @@ def connect(self):
461468
with suppress(Exception):
462469
if self.current_url.startswith("chrome-extension://"):
463470
self.close()
464-
self.service.stop()
471+
if self.service.is_connectable():
472+
self.stop_client()
473+
self.service.stop()
465474
self.service.start()
466475
self.start_session()
467476
self._is_connected = True
@@ -488,7 +497,9 @@ def quit(self):
488497
pass
489498
if hasattr(self, "service") and getattr(self.service, "process", None):
490499
logger.debug("Stopping webdriver service")
491-
self.service.stop()
500+
with suppress(Exception):
501+
self.stop_client()
502+
self.service.stop()
492503
with suppress(Exception):
493504
if self.reactor and isinstance(self.reactor, Reactor):
494505
logger.debug("Shutting down Reactor")

seleniumbase/undetected/cdp_driver/browser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def _handle_target_update(
248248

249249
async def get(
250250
self,
251-
url="chrome://welcome",
251+
url="about:blank",
252252
new_tab: bool = False,
253253
new_window: bool = False,
254254
) -> tab.Tab:

0 commit comments

Comments
 (0)