Replies: 9 comments
-
Try this https://www.omkar.cloud/bose/docs/tutorial/#undetected-driver. |
Beta Was this translation helpful? Give feedback.
-
Man I'm not this dumb |
Beta Was this translation helpful? Give feedback.
-
What do you mean? Does it not work? |
Beta Was this translation helpful? Give feedback.
-
On this website no |
Beta Was this translation helpful? Give feedback.
-
I will try on different machine later |
Beta Was this translation helpful? Give feedback.
-
Yeah I just tested it on a clean ip that passes the cloudflare anti bot filter with a normal non webdriver controlled Chrome browser and it doesn't ask for captcha checkbox. It redirects to actual site after a few seconds. But it detects botasaurus framework even with AntiDetectDriver. It throws up a captcha checkbox if I use botasaurus, a clicking the captcha checkbox causes it to go in infinite loop. Does Botasaurus suppress the webdriver fingerprint? My understanding is default Selerium webdriver announces itself with a special fingerprint that can be detected by anti bot filters. I agree with @Kotov584 that this framework is getting caught by bot detection if cloudflare protected site is using anti DDOS shield. Any luck with finding a solution for this @Chetan11-dev ? Here is the code I tried:
|
Beta Was this translation helpful? Give feedback.
-
No Luck :(, tried with puppeteer, playwright, undetected all were getting detected. |
Beta Was this translation helpful? Give feedback.
-
Is it because nowsecure.nl is using a higher level of cloudflare protection or is there something else going on? As other sites with the cloudflare anti DDOS shield do seem to work. |
Beta Was this translation helpful? Give feedback.
-
@gameuser1982 @Kotov584, Botasaurus can now visit https://nowsecure.nl from botasaurus import *
from botasaurus.create_stealth_driver import create_stealth_driver
@browser(
create_driver=create_stealth_driver(
start_url="https://nowsecure.nl/",
),
)
def scrape_heading_task(driver: AntiDetectDriver, data):
driver.prompt()
heading = driver.text('h1')
return heading
scrape_heading_task() Also, update update botasaurus by running python -m pip install botasaurus --upgrade |
Beta Was this translation helpful? Give feedback.
-
I tried to test this package and found that it can be detected by cloudflare used on nowsecure.nl website I also did attempt to find captcha in html automatically to click on it but unsuccessful
Beta Was this translation helpful? Give feedback.
All reactions