mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
14 lines
372 B
TypeScript
14 lines
372 B
TypeScript
|
import { BasePage } from "./base";
|
||
|
|
||
|
export class SignupPage extends BasePage {
|
||
|
url = '/setup';
|
||
|
elements = {
|
||
|
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'),
|
||
|
}
|
||
|
}
|