(sync_page: Page)
| 8 | |
| 9 | |
| 10 | def test_sync_challenger(sync_page: Page): |
| 11 | challenger = SyncChallenger(sync_page, click_timeout=1000) |
| 12 | # For slow Pytest Loading |
| 13 | challenger.detector.detection_models.check_loaded() |
| 14 | |
| 15 | sync_page.goto("https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox-explicit.php") |
| 16 | |
| 17 | with suppress(RecursionError): |
| 18 | res = challenger.solve_recaptcha() |
| 19 | assert res |
nothing calls this directly
no test coverage detected