mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
import { expect, Locator } from '@playwright/test'; |
|
import BasePage from '../../Base'; |
|
import { CalendarPage } from './index'; |
|
|
|
export class CalendarSideMenuPage extends BasePage { |
|
readonly parent: CalendarPage; |
|
|
|
readonly new_record_btn: Locator; |
|
|
|
constructor(parent: CalendarPage) { |
|
super(parent.rootPage); |
|
this.parent = parent; |
|
|
|
this.new_record_btn = this.get().getByTestId('nc-calendar-side-menu-new-btn'); |
|
} |
|
|
|
get() { |
|
return this.rootPage.getByTestId('nc-calendar-side-menu'); |
|
} |
|
|
|
async updateFilter({ filter }: { filter: string }) { |
|
const filterInput = this.get().getByTestId('nc-calendar-sidebar-filter'); |
|
await filterInput.click(); |
|
await this.rootPage.locator('.rc-virtual-list-holder-inner > div').locator(`text="${filter}"`).click(); |
|
} |
|
|
|
async searchRecord({ query }: { query: string }) { |
|
const searchInput = this.get().getByTestId('nc-calendar-sidebar-search'); |
|
await searchInput.fill(query); |
|
} |
|
|
|
async verifySideBarRecords({ records }: { records: string[] }) { |
|
const sideBar = this.get().getByTestId('nc-calendar-side-menu-list'); |
|
|
|
const sideBarRecords = await sideBar.getByTestId('nc-sidebar-record-card'); |
|
|
|
await expect(sideBarRecords).toHaveCount(records.length); |
|
|
|
for (let i = 0; i < records.length; i++) { |
|
await expect(sideBarRecords.nth(i)).toContainText(records[i]); |
|
} |
|
} |
|
}
|
|
|