mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
import { BasePage } from './BasePage';
|
|
|
|
export class ProjectWorkflowsPage extends BasePage {
|
|
async clickCreateWorkflowButton() {
|
|
await this.clickByTestId('add-resource-workflow');
|
|
}
|
|
|
|
async clickProjectMenuItem(projectName: string) {
|
|
await this.page.getByTestId('project-menu-item').filter({ hasText: projectName }).click();
|
|
}
|
|
}
|