-
|
I'm using SeleniumBase UC mode with CDP and im trying to test some founding inputs which is uses angular type selectors and i need to test them if i can really find that inputs(and this is the last page of my process so for handle it without doing all the job i want to start my flow just only that form page.. here is my flow: Open browser with activate_cdp_mode("https://www.google.com") The problem is CDP stays bound to the original page. After manual navigation, sb.cdp.* methods don't work. with SB(uc=True, headed=True) as sb: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
There's If any issues with that, call |
Beta Was this translation helpful? Give feedback.
There's
switch_to_newest_tab()/switch_to_newest_window(). Eg:SeleniumBase/examples/cdp_mode/raw_priceline.py
Line 30 in 7937f7e
If any issues with that, call
connect()/reconnect()and then use WebDriver tab-switching methods.