createCypressFiles
Generate TypeScript Page Object classes and Cypress test suites for web pages, automating element interactions and workflow testing directly within your Cypress project.
Instructions
Crear archivos Page Object y Tests directamente en el proyecto Cypress
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageObjectName | No | Nombre personalizado para el page object (opcional) | |
url | Yes | URL de la página web | |
workspacePath | No | Ruta del workspace (opcional, se detecta automáticamente) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageObjectName": {
"description": "Nombre personalizado para el page object (opcional)",
"type": "string"
},
"url": {
"description": "URL de la página web",
"type": "string"
},
"workspacePath": {
"description": "Ruta del workspace (opcional, se detecta automáticamente)",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}