playwright_test_ui
Execute automated UI tests using Playwright to validate user interactions, assertions, and browser compatibility across Chromium, Firefox, and WebKit for robust UI/UX workflows.
Instructions
Run UI tests with Playwright
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browsers | No | ||
tests | Yes | ||
url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"browsers": {
"default": [
"chromium"
],
"items": {
"enum": [
"chromium",
"firefox",
"webkit"
],
"type": "string"
},
"type": "array"
},
"tests": {
"items": {
"properties": {
"actions": {
"type": "array"
},
"assertions": {
"type": "array"
},
"name": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"url": {
"type": "string"
}
},
"required": [
"url",
"tests"
],
"type": "object"
}