Main function to run all bot detection tests. Executes various tests to check bypass capabilities against different security systems.
(driver: Driver, _)
| 58 | |
| 59 | @browser() |
| 60 | def run_bot_tests(driver: Driver, _): |
| 61 | """ |
| 62 | Main function to run all bot detection tests. |
| 63 | Executes various tests to check bypass capabilities against different security systems. |
| 64 | """ |
| 65 | test_cloudflare_waf(driver) |
| 66 | test_browserscan_bot_detection(driver) |
| 67 | test_fingerprint_bot_detection(driver) |
| 68 | test_datadome_bot_detection(driver) |
| 69 | test_cloudflare_turnstile(driver) |
| 70 | |
| 71 | |
| 72 |
no test coverage detected