n8n/cypress/pages/settings-community-nodes.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
791 B
TypeScript
Raw Normal View History

export const getCommunityCards = () => {
return cy.getByTestId('community-package-card');
};
export const visitCommunityNodesSettings = () => {
cy.visit('/settings/community-nodes');
};
export const installFirstCommunityNode = (nodeName: string) => {
cy.getByTestId('action-box').find('button').click();
cy.getByTestId('communityPackageInstall-modal').find('input').eq(0).type(nodeName);
cy.getByTestId('user-agreement-checkbox').click();
cy.getByTestId('install-community-package-button').click();
};
export const confirmCommunityNodeUpdate = () => {
cy.getByTestId('communityPackageManageConfirm-modal').find('button').eq(1).click();
};
export const confirmCommunityNodeUninstall = () => {
cy.getByTestId('communityPackageManageConfirm-modal').find('button').eq(1).click();
};