Files
n8n-enterprise-unlocked/packages/testing/playwright/pages/SettingsPage.ts

16 lines
310 B
TypeScript

import { BasePage } from './BasePage';
export class SettingsPage extends BasePage {
getMenuItems() {
return this.page.getByTestId('menu-item');
}
getMenuItem(id: string) {
return this.page.getByTestId('menu-item').getByTestId(id);
}
async goToSettings() {
await this.page.goto('/settings');
}
}