generateLocator
Create TypeScript Page Object classes and Cypress test suites for web pages to automate element interactions and workflow testing, supporting both positive and negative scenarios.
Instructions
Generar Page Object y Tests de Cypress
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | URL de la página web |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "URL de la página web",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}