mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 15:14:05 -08:00
12 lines
279 B
TypeScript
12 lines
279 B
TypeScript
|
import { BasePage } from "./base";
|
||
|
|
||
|
export class SigninPage extends BasePage {
|
||
|
url = '/signin';
|
||
|
elements = {
|
||
|
form: () => cy.getByTestId('auth-form'),
|
||
|
email: () => cy.getByTestId('email'),
|
||
|
password: () => cy.getByTestId('password'),
|
||
|
submit: () => cy.get('button'),
|
||
|
}
|
||
|
}
|