release: v0.3.3 — Windows x64, macOS v145, auto-spoof docs

Bump wrapper to 0.3.3. Update README fingerprint section to
document auto-spoof behavior (zero-config stealth). Improve
reCAPTCHA test with wait_for_selector instead of blind sleep.
This commit is contained in:
CloakHQ
2026-03-03 20:05:16 +01:00
parent f9887943c0
commit 0c64a32122
5 changed files with 36 additions and 7 deletions
+6 -2
View File
@@ -146,8 +146,12 @@ def test_recaptcha(page):
wait_until="domcontentloaded",
timeout=30000,
)
# Page auto-submits via grecaptcha.execute() — wait for backend response
time.sleep(8)
# Wait for backend response (step3 element appears when score arrives)
try:
page.wait_for_selector("li.step3", timeout=20000)
time.sleep(1)
except Exception:
time.sleep(10) # fallback
results = page.evaluate("""() => {
const text = document.body.innerText;