AI Validation steps allow you to verify simple conditions using natural language assertions. Each validation should focus on checking a single aspect of your application, such as text content, element presence, colors, or layout.
// Good"assertion": "Verify that the submit button is disabled"// Avoid"assertion": "Verify that the form shows validation errors and the submit button is disabled and error messages are in red"
Be Specific: Clearly state what you’re checking
Copy
Ask AI
// Good"assertion": "Verify that the price '$29.99' is visible"// Avoid"assertion": "Check if the price is correct"