midscene_aiAssert
Monitor and validate specified conditions on web pages using natural language descriptions. Polls the condition with AI to ensure accuracy during automated testing workflows.
Instructions
Asserts that a specified condition, described in natural language, is true on the page. Polls the condition using AI.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assertion | Yes | Condition to monitor on the page, described in natural language. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"assertion": {
"description": "Condition to monitor on the page, described in natural language.",
"type": "string"
}
},
"required": [
"assertion"
],
"type": "object"
}