mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
/**
|
|
* Getters
|
|
*/
|
|
|
|
export const getWorkflowCredentialsModal = () => cy.getByTestId('setup-workflow-credentials-modal');
|
|
|
|
export const getContinueButton = () => cy.getByTestId('continue-button');
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
export const closeModalFromContinueButton = () => getContinueButton().click();
|