Skip to content

Detected webdriver on creepjs #39

Description

@Nazar1ky

Hello!
The Firefox browser with Playwright Stealth getting detected on https://abrahamjuliot.github.io/creepjs/
Image
Code to reproduce the same behaviour:

from playwright.sync_api import sync_playwright, BrowserType
from playwright_stealth import stealth_sync, StealthConfig
import time

with sync_playwright() as p:
    browser = p.firefox.launch(
            headless=False,
        )
    page = browser.new_page()
    
    config = StealthConfig(
        navigator_user_agent=False,
        browser_type=BrowserType.FIREFOX
    )
    stealth_sync(page, config=config)
    
    page.goto("https://abrahamjuliot.github.io/creepjs/")
    time.sleep(10000)
    browser.close()

Thank You!

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions