We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 564295f commit de51505Copy full SHA for de51505
examples/raw_cdp_copilot.py
@@ -17,10 +17,10 @@
17
sb.sleep(1.1)
18
sb.click('button[data-testid="submit-button"]')
19
sb.sleep(2.5)
20
- sb.gui_click_captcha()
21
- sb.sleep(2.5)
22
+ sb.solve_captcha()
23
sb.sleep(3.5)
+ sb.sleep(2.5)
24
stop_button = '[data-testid="stop-button"]'
25
thumbs_up = 'button[data-testid*="-thumbs-up-"]'
26
sb.wait_for_element_absent(stop_button, timeout=50)
@@ -36,5 +36,5 @@
36
text = sb.get_text('[data-testid="highlighted-chats"]')
37
print(text.replace(" ", " ").replace(" . ", ". "))
38
sb.driver.stop()
39
-except Exception:
40
- print("Something failed!")
+except Exception as e:
+ print(e)
0 commit comments