Anti-Robot Form Challenge
This page uses a real-world anti-bot technique: form fields are disabled until
a genuine keyboard event (isTrusted: true) is detected.
Selenium's send_keys() and JavaScript injection will fail.
Protected Login Form
All fields below are disabled. They will only activate when a real keystroke is detected.
🔒
Form locked — waiting for a real keystroke event (isTrusted: true)
Challenge Instructions
1. Navigate to this page with your APM agent.
2. Type into the form fields using real keyboard events (CDP-level or OS-level keystrokes).
3. Fill both fields (email and password) and submit the form.
4. Verify the signature text SINAINSIGHT-ANTIROBOT-VERIFIED
is present on the success page.
Anti-bot technique: The page listens for
keydown
events and checks the isTrusted property.
Selenium send_keys() fires events with
isTrusted: false.
Tools that use CDP Input.dispatchKeyEvent or
OS-level keystrokes will pass.