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
It will break after two reloads independently of what you've setted for REBROWSER_PATCHES_RUNTIME_FIX_MODE. Maybe im doing smth wrong (i'm new in this things, so i can)
Steps to Reproduce:
os.environ["REBROWSER_PATCHES_RUNTIME_FIX_MODE"] = "alwaysIsolated" # you can define it or not it will break anyway
os.environ["REBROWSER_PATCHES_RUNTIME_FIX_MODE"] = "enableDisable" # you can define it or not it will break anyway
async def start():
async with async_playwright() as playwright:
browser = await playwright.chromium.launch(headless=False, channel = 'chrome',
args=[
'--disable-blink-features=AutomationControlled',
])
context = await browser.new_context()
page = await context.new_page()
await page.goto('https://deviceandbrowserinfo.com/are_you_a_bot')
asyncio.run(start())
After two reloads of the botchecking page, system shows that you're a bot on https://deviceandbrowserinfo.com/are_you_a_bot.
Decided to open this issue cause on your website theres info that it wont detect bot (https://rebrowser.net/blog/how-to-fix-runtime-enable-cdp-detection-of-puppeteer-playwright-and-other-automation-libraries).
It will break after two reloads independently of what you've setted for REBROWSER_PATCHES_RUNTIME_FIX_MODE. Maybe im doing smth wrong (i'm new in this things, so i can)
Steps to Reproduce:
Environment:
Playwright Version: 1.49.1
ReBrowser Version: 1.49.1
OS: Windows 11
Python Version: 3.12.4
The text was updated successfully, but these errors were encountered: