mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08:00
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
|
/**
|
||
|
* Getters
|
||
|
*/
|
||
|
|
||
|
export const getWorkflowCredentialsModal = () => cy.getByTestId('setup-workflow-credentials-modal');
|
||
|
|
||
|
/**
|
||
|
* Actions
|
||
|
*/
|
||
|
|
||
|
export const closeModal = () =>
|
||
|
getWorkflowCredentialsModal().find("button[aria-label='Close this dialog']").click();
|