I think it is very easly detected on Cloudflare check e,g on http://c-h-a-t-g-p-t.com' #8
hayat-khan-space
started this conversation in
General
Replies: 1 comment 1 reply
-
have you tried running it on a different IP or machine? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
import asyncio
patchright here!
from patchright.async_api import async_playwright
async def main():
async with async_playwright() as p:
browser = await p.chromium.launch()
page = await browser.new_page()
await page.goto('http://c-h-a-t-g-p-t.com')
await page.screenshot(path=f'example-{p.chromium.name}.png')
await browser.close()
asyncio.run(main())
Beta Was this translation helpful? Give feedback.
All reactions