mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
10 lines
318 B
TypeScript
10 lines
318 B
TypeScript
|
export type IE2ETestPageElement = (...args: unknown[]) =>
|
||
|
| Cypress.Chainable<JQuery<HTMLElement>>
|
||
|
| Cypress.Chainable<JQuery<HTMLButtonElement>>;
|
||
|
|
||
|
export interface IE2ETestPage {
|
||
|
url?: string;
|
||
|
elements: Record<string, IE2ETestPageElement>;
|
||
|
get(id: string, ...args: unknown[]): ReturnType<IE2ETestPageElement>;
|
||
|
}
|