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.
48 lines
1.2 KiB
48 lines
1.2 KiB
import BasePage from '../../Base'; |
|
import { DashboardPage } from '..'; |
|
import { expect } from '@playwright/test'; |
|
|
|
export class CmdL extends BasePage { |
|
readonly dashboardPage: DashboardPage; |
|
|
|
constructor(dashboard: DashboardPage) { |
|
super(dashboard.rootPage); |
|
this.dashboardPage = dashboard; |
|
} |
|
|
|
get() { |
|
return this.dashboardPage.get().locator('.cmdl-modal.cmdl-modal-active'); |
|
} |
|
|
|
async openCmdL() { |
|
await this.dashboardPage.rootPage.keyboard.press((await this.isMacOs()) ? 'Meta+l' : 'Control+l'); |
|
} |
|
|
|
async isCmdLVisible() { |
|
await expect(this.get()).toBeVisible(); |
|
} |
|
|
|
async isCmdLNotVisible() { |
|
await expect(this.get()).toBeHidden(); |
|
} |
|
|
|
async moveDown() { |
|
await this.dashboardPage.rootPage.keyboard.press('ArrowDown'); |
|
} |
|
|
|
async moveUp() { |
|
await this.dashboardPage.rootPage.keyboard.press('ArrowUp'); |
|
} |
|
|
|
async openRecent() { |
|
await this.dashboardPage.rootPage.keyboard.press('Enter'); |
|
} |
|
|
|
async getActiveViewTitle() { |
|
return await this.dashboardPage.get().locator('.nc-active-view-title').innerText(); |
|
} |
|
|
|
async getActiveTableTitle() { |
|
return await this.dashboardPage.get().locator('.nc-active-table-title').innerText(); |
|
} |
|
}
|
|
|