mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 01:07:04 +02: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();
|
|
}
|
|
}
|