Files
n8n-enterprise-unlocked/packages/testing/playwright/pages/ProjectSettingsPage.ts
2025-07-01 14:15:31 +01:00

12 lines
297 B
TypeScript

import { BasePage } from './BasePage';
export class ProjectSettingsPage extends BasePage {
async fillProjectName(name: string) {
await this.page.getByTestId('project-settings-name-input').locator('input').fill(name);
}
async clickSaveButton() {
await this.clickButtonByName('Save');
}
}