mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
20 lines
356 B
TypeScript
20 lines
356 B
TypeScript
/**
|
|
* Getters
|
|
*/
|
|
|
|
export function getWorkflowsPageUrl() {
|
|
return '/home/workflows';
|
|
}
|
|
|
|
export const getCreateWorkflowButton = () => cy.getByTestId('add-resource-workflow');
|
|
|
|
export const getNewWorkflowCardButton = () => cy.getByTestId('new-workflow-card');
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
export function visitWorkflowsPage() {
|
|
cy.visit(getWorkflowsPageUrl());
|
|
}
|