()
| 62 | # --- RecaptchaV3 sync --- |
| 63 | |
| 64 | def test_recaptcha_v3_solve(): |
| 65 | client = CapmonsterClient(API_KEY) |
| 66 | task = RecaptchaV3Task( |
| 67 | websiteURL=RECAPTCHA_V3_URL, |
| 68 | websiteKey=RECAPTCHA_V3_KEY, |
| 69 | minScore=0.3, |
| 70 | pageAction="verify", |
| 71 | ) |
| 72 | result = client.solve(task) |
| 73 | assert "gRecaptchaResponse" in result |
| 74 | assert len(result["gRecaptchaResponse"]) > 0 |
| 75 | |
| 76 | |
| 77 | def test_recaptcha_v3_create_and_join(): |
nothing calls this directly
no test coverage detected