QIN2DIM / undetected-playwright

You know who I am
Apache License 2.0
162 stars 29 forks source link

It's not work for cloudflare,could you fix it ? #9

Open ukenmisneru opened 1 year ago

ukenmisneru commented 1 year ago

It's been detected by cloudflare .How should I solove that?

TemaMix commented 1 year ago

I've faced with the same issue. I've checked using this script:

from playwright.sync_api import BrowserContext, sync_playwright

from undetected_playwright import stealth_sync

import pdb

with sync_playwright() as playwright:
    browser = playwright.chromium.launch(headless=False)
    context = browser.new_context()
    page = self.context.new_page()
    stealth_sync(self.context)
    page.goto("https://www.nowsecure.nl")
    pdb.set_trace()
luckybk93 commented 12 months ago

I also had the same problem as you. Can someone help?