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 9ae2c55 commit f8036a1Copy full SHA for f8036a1
2 files changed
examples/cdp_mode/raw_indeed.py
@@ -4,6 +4,8 @@
4
url = "https://www.indeed.com/companies/search"
5
sb.activate_cdp_mode(url)
6
sb.sleep(2)
7
+ sb.solve_captcha()
8
+ sb.sleep(1)
9
search_box = "input#company-search"
10
if not sb.is_element_present(search_box):
11
sb.solve_captcha()
examples/cdp_mode/raw_indeed_login.py
@@ -4,12 +4,14 @@
with SB(uc=True, test=True, incognito=True) as sb:
url = "https://secure.indeed.com/auth"
- sb.sleep(1.8)
+ sb.sleep(2.2)
+ sb.sleep(2.5)
sb.type('input[type="email"]', "test@test.com")
- sb.sleep(1.5)
+ sb.sleep(0.5)
12
13
14
sb.click('button[type="submit"]')
- sb.sleep(3.2)
15
16
17
sb.sleep(4.5)
0 commit comments