browser_endtoend
Run end-to-end browser tests using LLMs with Playwright's accessibility tree to validate test cases efficiently.
Instructions
Run an end to end test suit in the browser
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| testDefinition | Yes | The test case definition |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"testDefinition": {
"description": "The test case definition",
"type": "string"
}
},
"required": [
"testDefinition"
],
"type": "object"
}