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