Authentication & Login
Authentication flows are the first real hurdle for web automation. These scenarios cover forms, session cookies, two-factor prompts, OAuth popups, and conditional checks that determine when a user is already logged in.
Basic Login and Extract Dashboard
Enter credentials, click Log In, and extract the profile table shown after login.
Check Login Form Visibility Before Acting
Use an if condition to check whether a login form is visible before filling it.
Conditional Login Check with Fallback
Use if/else to extract immediately when authenticated or log in first when not.
Login with 2FA Prompt
Submit credentials, prompt the human for a one-time code, and verify it.
OAuth Google Sign-In Flow
Click a Google sign-in button, complete a simulated OAuth popup, and extract account data.
Cookie-Based Session Bypass
Set a session cookie directly and then access the authenticated dashboard view.
Login with URL-Based 2FA Detection
Detect a simulated two-factor step using script-based URL checking and prompt for OTP.
Check Logout Button for Auth State
Determine authentication state by checking for a logout button element.