Botright icon indicating copy to clipboard operation
Botright copied to clipboard

[BUG] detected on fingerprint.com as a bot

Open nostorian opened this issue 1 year ago • 3 comments

Describe the bug As we can see in the image that botright got detected by fingerprint.com image

Code Sample I used example code to test:

import asyncio

import botright


async def main():
    botright_client = await botright.Botright()
    browser = await botright_client.new_browser()
    page = await browser.new_page()

    # Continue by using the Page
    await page.goto("https://fingerprint.com/products/bot-detection/")

    while True:
        pass


if __name__ == "__main__":
    asyncio.run(main())

To Reproduce Steps to reproduce the behavior:

  1. Go to '...'
  2. Click on '....'
  3. Scroll down to '....'
  4. See error

Expected behavior As per the readme fingerprint.com should have returned not detected

Desktop (please complete the following information):

  • OS: Windows
  • Version 11

nostorian avatar Aug 15 '24 21:08 nostorian

also using ungoogled chromium returned detected as well

nostorian avatar Aug 15 '24 21:08 nostorian

Ladu muskana

Rakeshbiswal01 avatar Oct 17 '24 08:10 Rakeshbiswal01

botright_client = await botright.Botright(spoof_canvas=False, use_undetected_playwright=True, mask_fingerprint=False)

modify use_undetected_playwright=>true

tisoz avatar Jul 07 '25 02:07 tisoz