mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat: Add testcontainers and Playwright (no-changelog) (#16662)
Co-authored-by: Tomi Turtiainen <10324676+tomi@users.noreply.github.com>
This commit is contained in:
11
packages/testing/playwright/pages/ProjectWorkflowsPage.ts
Normal file
11
packages/testing/playwright/pages/ProjectWorkflowsPage.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user