Closed
Description
[Basic Information]
System: win10
Language: python 3.9
seleniumbase version: 4.20.1
chrome version: 118.0.5993.71
[Details]
When testing with the following code, https://nowsecure.nl/#relax passes the test most of the time. In situations where the test does not pass, the test can also be passed by manually clicking on the checkbox:
from seleniumbase import Driver
import time
driver = Driver(uc=True)
driver.get("https://nowsecure.nl/#relax")
time.sleep(6)
driver.quit()
But https://mjai.ekyu.moe/ still fails to pass the cloudflare test. Manually clicking the checkbox will give a failed result
from seleniumbase import Driver
import time
driver = Driver(uc=True)
driver.get("https://mjai.ekyu.moe/")
time.sleep(6)
driver.quit()