mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
export const verifyCredentialsListPageIsLoaded = () => {
|
|
cy.get('[data-test-id="resources-list-wrapper"], [data-test-id="empty-resources-list"]').should(
|
|
'be.visible',
|
|
);
|
|
};
|
|
|
|
export const navigateToCredentialsPageAndWaitForLoad = (credentialsPageUrl: string) => {
|
|
cy.visit(credentialsPageUrl);
|
|
verifyCredentialsListPageIsLoaded();
|
|
};
|