mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
* 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
12 lines
278 B
TypeScript
12 lines
278 B
TypeScript
import { BasePage } from "./base";
|
|
|
|
export class SigninPage extends BasePage {
|
|
url = '/signin';
|
|
getters = {
|
|
form: () => cy.getByTestId('auth-form'),
|
|
email: () => cy.getByTestId('email'),
|
|
password: () => cy.getByTestId('password'),
|
|
submit: () => cy.get('button'),
|
|
}
|
|
}
|