Hello!
The Firefox browser with Playwright Stealth getting detected on https://abrahamjuliot.github.io/creepjs/

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!
Hello!

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