You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Checks that the element has a visible area (> 0), isn’t hidden by CSS and is in the viewport (after `scroll_into_view()` when needed). Useful pre-check before interactions.
65
+
-`is_interactable()`
66
+
- “Click-ready” state: combines visibility, enabledness and pointer-event hit testing. Ideal for robust flows that avoid lost clicks.
67
+
-`is_on_top()`
68
+
- Verifies the element is the top hit-test target at the intended click point, avoiding overlays.
These additions simplify waiting and state validation before clicking/typing, reducing flakiness and making automations more predictable.
83
+
50
84
### Browser-context HTTP requests - game changer for hybrid automation!
51
85
Ever wished you could make HTTP requests that automatically inherit all your browser's session state? **Now you can!**<br>
52
86
The `tab.request` property gives you a beautiful `requests`-like interface that executes HTTP calls directly in the browser's JavaScript context. This means every request automatically gets cookies, authentication headers, CORS policies, and session state, just as if the browser made the request itself.
0 commit comments