Monitoring a Page
Monitor web pages for conditions using AI
You can use the monitor
method to intelligently monitor web pages for specific conditions. This method uses AI to understand and evaluate natural language conditions, making it easy to wait for specific states or changes in web applications without writing complex selectors or assertions.
The Monitor API is particularly powerful for dynamic web applications where you need to wait for specific states that might be difficult to detect with traditional selectors. It can understand complex conditions involving multiple elements, text content, visual states, and more.
Usage example
First, you’ll need to create a session.
Next, you’ll need to create a window and load a URL.
Now you can monitor for a condition. Here’s an example waiting for a successful login:
The response will include a conditionMet
boolean indicating whether the condition was met, and optionally a reason
explaining why the condition was not met.
Example Conditions
Here are some examples of conditions you can monitor for:
- “Wait for the success message to appear after form submission”
- “Check if the shopping cart contains more than 3 items”
- “Determine if the error message is visible”
- “Wait for the loading spinner to disappear”
- “Check if the table has been populated with data”
Configuration Options
You can customize the monitoring behavior with these options:
Interval Configuration
intervalSeconds
: How frequently to check the condition (default: 5 seconds)timeoutSeconds
: Maximum time to wait for the condition (default: 30 seconds)
Visual Analysis
includeVisualAnalysis
: Enable visual analysis for enhanced condition detection"auto"
: Let the system decide (default)"enabled"
: Always use visual analysis"disabled"
: Never use visual analysis
Resource Management
costThresholdCredits
: Set credit limits for the monitoring operationtimeThresholdSeconds
: Set maximum execution time limits
When visual analysis is enabled, monitoring operations may use more credits but can detect visual changes more accurately. This is particularly useful for conditions that involve visual states like “Check if the button is grayed out” or “Wait for the success icon to appear”.