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.
50 lines
1.7 KiB
50 lines
1.7 KiB
import { expect } from '@playwright/test'; |
|
import BasePage from '../../Base'; |
|
import { getTextExcludeIconText } from '../../../tests/utils/general'; |
|
import { DataSourcePage } from './DataSourcePage'; |
|
|
|
export class MetaDataPage extends BasePage { |
|
constructor(dataSource: DataSourcePage) { |
|
super(dataSource.rootPage); |
|
} |
|
|
|
get() { |
|
return this.rootPage.locator('div.ant-modal-content'); |
|
} |
|
|
|
async clickReload() { |
|
await this.get().locator(`button:has-text("Reload")`).click(); |
|
|
|
// todo: Remove this wait |
|
await this.rootPage.waitForTimeout(100); |
|
// await this.get().locator(`.animate-spin`).waitFor({state: 'visible'}); |
|
await this.get().locator(`.animate-spin`).waitFor({ state: 'detached' }); |
|
} |
|
|
|
async close() { |
|
await this.get().click(); |
|
await this.rootPage.keyboard.press('Escape'); |
|
await this.rootPage.keyboard.press('Escape'); |
|
await this.get().waitFor({ state: 'detached' }); |
|
} |
|
|
|
async sync() { |
|
await this.get().locator(`button:has-text("Sync Now")`).click(); |
|
await this.verifyToast({ message: 'Table metadata recreated successfully' }); |
|
await this.get().locator(`.animate-spin`).waitFor({ state: 'visible' }); |
|
await this.get().locator(`.animate-spin`).waitFor({ state: 'detached' }); |
|
} |
|
|
|
async verifyRow({ index, model, state }: { index: number; model: string; state: string }) { |
|
const fieldLocator = this.get().locator(`tr.ant-table-row`).nth(index).locator(`td.ant-table-cell`).nth(0); |
|
const fieldText = await getTextExcludeIconText(fieldLocator); |
|
expect(fieldText).toBe(model); |
|
|
|
await expect(this.get().locator(`tr.ant-table-row`).nth(index).locator(`td.ant-table-cell`).nth(1)).toHaveText( |
|
state, |
|
{ |
|
ignoreCase: true, |
|
} |
|
); |
|
} |
|
}
|
|
|