You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
elements = sb.cdp.select_all('ul[data-testid*="products"] figure .details')
277
+
if elements:
278
+
print('**** Found results for "%s": ****'% search)
279
+
for element in elements:
280
+
print("* "+ element.text)
281
+
sb.sleep(2)
282
+
```
283
+
284
+
</details>
285
+
210
286
(<b>Note:</b> Extra <codetranslate="no">sb.sleep()</code> calls have been added to prevent bot-detection because some sites will flag you as a bot if you perform actions too quickly.)
211
287
212
288
(<b>Note:</b> Some sites may IP-block you for 36 hours or more if they catch you using regular <spantranslate="no">Selenium WebDriver</span>. Be extra careful when creating and/or modifying automation scripts that run on them.)
0 commit comments