mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 16:44:07 -08: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();
|