mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
12 lines
297 B
TypeScript
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');
|
|
}
|
|
}
|