mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
b5b44d1b59
* fix: Fix inferred type of X cannot be named error after pnpm update * feat: Change page objects to expose actions and getters. Add credential creation suite
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
import { BasePage } from "./base";
|
|
|
|
export class SignupPage extends BasePage {
|
|
url = '/setup';
|
|
getters = {
|
|
form: () => cy.getByTestId('auth-form'),
|
|
email: () => cy.getByTestId('email'),
|
|
firstName: () => cy.getByTestId('firstName'),
|
|
lastName: () => cy.getByTestId('lastName'),
|
|
password: () => cy.getByTestId('password'),
|
|
submit: () => cy.get('button'),
|
|
}
|
|
}
|