(async_page: Page)
| 330 | @pytest.mark.asyncio |
| 331 | @pytest.mark.skip(reason="No different challenge type, Skipping due to time complexity") |
| 332 | async def test_testrecaptcha_github(async_page: Page): |
| 333 | challenger = AsyncChallenger(async_page, click_timeout=1000) |
| 334 | # For slow Pytest Loading |
| 335 | challenger.detector.detection_models.check_loaded() |
| 336 | |
| 337 | await async_page.goto("https://testrecaptcha.github.io/") |
| 338 | |
| 339 | with suppress(RecursionError): |
| 340 | res = await challenger.solve_recaptcha() |
| 341 | assert res |
| 342 | |
| 343 | |
| 344 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected