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.
34 lines
1.0 KiB
34 lines
1.0 KiB
import { Locator } from '@playwright/test'; |
|
import BasePage from '../../Base'; |
|
import { DashboardPage } from '..'; |
|
import { ToolbarPage } from '../common/Toolbar'; |
|
|
|
export class FindRowByScanOverlay extends BasePage { |
|
readonly dashboard: DashboardPage; |
|
readonly toolbar: ToolbarPage; |
|
readonly selectColumnDropdown: Locator; |
|
|
|
constructor(dashboard: DashboardPage) { |
|
super(dashboard.rootPage); |
|
this.dashboard = dashboard; |
|
this.toolbar = dashboard.grid.toolbar; |
|
this.selectColumnDropdown = this.dashboard.get().locator('.nc-dropdown-scanner-column-id'); |
|
} |
|
|
|
get() { |
|
return this.dashboard.get().locator(`.nc-overlay-find-row-by-scan`); |
|
} |
|
|
|
async isVisible() { |
|
return await this.get().isVisible(); |
|
} |
|
|
|
async scannerScreenIsVisible() { |
|
return await this.get().locator(`.nc-scanner-screen`).isVisible(); |
|
} |
|
|
|
async selectColumnToScan({ columnName }: { columnName: string }) { |
|
await this.selectColumnDropdown.click(); |
|
await this.selectColumnDropdown.selectOption({ label: columnName }); |
|
} |
|
}
|
|
|