mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
27 lines
838 B
TypeScript
27 lines
838 B
TypeScript
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')
|
|
.contains('button', 'Confirm update')
|
|
.click();
|
|
};
|
|
|
|
export const confirmCommunityNodeUninstall = () => {
|
|
cy.getByTestId('communityPackageManageConfirm-modal')
|
|
.contains('button', 'Confirm uninstall')
|
|
.click();
|
|
};
|