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 718e40a commit 5ebb243Copy full SHA for 5ebb243
examples/cdp_mode/raw_cdp_walmart.py
@@ -3,6 +3,10 @@
3
url = "https://www.walmart.com/"
4
sb = sb_cdp.Chrome(url, locale="en", guest=True)
5
sb.sleep(3)
6
+continue_button = 'button:contains("Continue shopping")'
7
+if sb.is_element_visible(continue_button):
8
+ sb.gui_click_element(continue_button)
9
+ sb.sleep(0.6)
10
sb.click('input[aria-label="Search"]')
11
sb.sleep(1.4)
12
search = "Settlers of Catan Board Game"
0 commit comments