2022-12-15 07:39:59 -08:00
|
|
|
import { BasePage } from './base';
|
2022-11-08 04:21:10 -08:00
|
|
|
|
2022-11-24 03:52:09 -08:00
|
|
|
// todo rename to setup
|
2022-11-08 04:21:10 -08:00
|
|
|
export class SignupPage extends BasePage {
|
|
|
|
url = '/setup';
|
2022-11-22 01:37:26 -08:00
|
|
|
getters = {
|
2022-11-08 04:21:10 -08:00
|
|
|
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'),
|
2022-11-24 03:52:09 -08:00
|
|
|
skip: () => cy.get('a'),
|
2022-12-15 07:39:59 -08:00
|
|
|
};
|
2022-11-08 04:21:10 -08:00
|
|
|
}
|