Files
nocodb/tests/playwright/pages/Dashboard/common/Toolbar/CalendarViewMode.ts
2024-02-20 07:16:18 +00:00

19 lines
490 B
TypeScript

import BasePage from '../../../Base';
import { ToolbarPage } from './index';
export class ToolbarCalendarViewModePage extends BasePage {
readonly toolbar: ToolbarPage;
constructor(toolbar: ToolbarPage) {
super(toolbar.rootPage);
this.toolbar = toolbar;
}
get() {
return this.rootPage.getByTestId('nc-calendar-view-mode');
}
async changeCalendarView({ title }: { title: string }) {
await this.get().getByTestId(`nc-calendar-view-mode-${title}`).click();
}
}