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.
96 lines
2.7 KiB
96 lines
2.7 KiB
// playwright-dev-page.ts |
|
import { expect, Locator } from "@playwright/test"; |
|
import BasePage from "../../Base"; |
|
import { DashboardPage } from ".."; |
|
// import clipboard from "clipboardy"; |
|
|
|
export class ExpandedFormPage extends BasePage { |
|
readonly dashboard: DashboardPage; |
|
readonly addNewTableButton: Locator; |
|
readonly copyUrlButton: Locator; |
|
|
|
constructor(dashboard: DashboardPage) { |
|
super(dashboard.rootPage); |
|
this.dashboard = dashboard; |
|
this.addNewTableButton = this.dashboard.get().locator(".nc-add-new-table"); |
|
this.copyUrlButton = this.dashboard.get().locator(".nc-copy-row-url"); |
|
} |
|
|
|
get() { |
|
return this.dashboard.get().locator(`.nc-drawer-expanded-form`); |
|
} |
|
|
|
async fillField({ |
|
columnTitle, |
|
value, |
|
type = "text", |
|
}: { |
|
columnTitle: string; |
|
value: string; |
|
type?: string; |
|
}) { |
|
const field = this.get().locator( |
|
`[pw-data="nc-expand-col-${columnTitle}"]` |
|
); |
|
await field.hover(); |
|
switch (type) { |
|
case "text": |
|
await field.locator("input").fill(value); |
|
break; |
|
case "belongsTo": |
|
await field.locator(".nc-action-icon").click(); |
|
await this.dashboard.linkRecord.select(value); |
|
break; |
|
case "hasMany": |
|
case "manyToMany": |
|
await field.locator(`[data-cy="nc-child-list-button-link-to"]`).click(); |
|
await this.dashboard.linkRecord.select(value); |
|
break; |
|
} |
|
} |
|
|
|
async save() { |
|
await this.get().locator('button:has-text("Save Row")').click(); |
|
await this.get().press("Escape"); |
|
await this.get().waitFor({ state: "hidden" }); |
|
await this.toastWait({ message: `updated successfully.` }); |
|
await this.rootPage |
|
.locator('[pw-data="grid-load-spinner"]') |
|
.waitFor({ state: "hidden" }); |
|
} |
|
|
|
async verify({ header, url }: { header: string; url: string }) { |
|
expect( |
|
await this.get().locator(`.nc-expanded-form-header`).last().innerText() |
|
).toContain(header); |
|
expect(await this.rootPage.url()).toContain(url); |
|
} |
|
|
|
async close() { |
|
await this.rootPage.keyboard.press("Escape"); |
|
} |
|
|
|
async cancel() { |
|
await this.get().locator('button:has-text("Cancel")').last().click(); |
|
} |
|
|
|
// async getClipboardText() { |
|
// const clipboard = (await import("clipboardy")).default; |
|
// let clipText = await clipboard.read(); |
|
// console.log(clipText); |
|
// return clipText; |
|
// } |
|
|
|
async openChildCard(param: { column: string; title: string }) { |
|
let childList = await this.get().locator( |
|
`[pw-data="nc-expand-col-${param.column}"]` |
|
); |
|
await childList.locator(`.ant-card:has-text("${param.title}")`).click(); |
|
} |
|
|
|
async count() { |
|
return await this.rootPage |
|
.locator(`.nc-drawer-expanded-form .ant-drawer-content`) |
|
.count(); |
|
} |
|
}
|
|
|