Tests against Datadome's bot detection system. Visits a demo page protected by Datadome.
(driver: Driver)
| 23 | |
| 24 | |
| 25 | def test_datadome_bot_detection(driver: Driver): |
| 26 | """ |
| 27 | Tests against Datadome's bot detection system. |
| 28 | Visits a demo page protected by Datadome. |
| 29 | """ |
| 30 | print("Running Datadome Bot Detection test...") |
| 31 | driver.get("https://fingerprint-scan.com/") |
| 32 | driver.sleep(3) |
| 33 | print("✅ Datadome Bot Detection test completed") |
| 34 | |
| 35 | |
| 36 | def test_cloudflare_turnstile(driver: Driver): |