Selenium Bot Bypass

63 Views Asked by At

I wrote a python program to automate timebucks.com with help of selenium the terms of service of the websites states that if I make more than same accounts all my accounts will be banned and the same happened all my accounts were banned after a month so I want to figure out what I can include in my code that they cant detect that I am running multiple accounts on the same device with multiple chrome profiles.

I tried running all the chrome tabs in visible mode and not in headless mode and I also included these lines I got from an article

options.add_experimental_option("detach", True)
options.add_experimental_option("excludeSwitches", \['enable-automation'\])\`
options.add_experimental_option("useAutomationExtension", False)
driver = webdriver.Chrome(options=options)
driver.execute_script("Object.defineProperty(navigator, 'webdriver', {get: () =\> undefined})")

but it didn't help me

0

There are 0 best solutions below