mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
16 lines
185 B
TypeScript
16 lines
185 B
TypeScript
/**
|
|
* Getters
|
|
*/
|
|
|
|
export function getWorkflowsPageUrl() {
|
|
return '/home/workflows';
|
|
}
|
|
|
|
/**
|
|
* Actions
|
|
*/
|
|
|
|
export function visitWorkflowsPage() {
|
|
cy.visit(getWorkflowsPageUrl());
|
|
}
|