mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
14 lines
296 B
TypeScript
14 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();
|