多维表格
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.

51 lines
1.5 KiB

// playwright-dev-page.ts
import { expect } from '@playwright/test';
import { SettingsPage } from '.';
import BasePage from '../../Base';
export class AuditSettingsPage extends BasePage {
private readonly settings: SettingsPage;
constructor(settings: SettingsPage) {
super(settings.rootPage);
this.settings = settings;
}
get() {
return this.settings.get().locator(`[pw-data="nc-settings-subtab-Audit"]`);
}
async verifyRow(
{index, opType, opSubtype, description, user, created}:
{index: number,opType?: string, opSubtype?: string, description?: string, user?: string, created?: string}
) {
const table = await this.get();
const row = table.locator(`tr.ant-table-row`).nth(index);
if(opType) {
await row.locator(`td.ant-table-cell`).nth(0).textContent()
.then((text) => expect(text).toContain(opType));
}
if(opSubtype) {
await row.locator(`td.ant-table-cell`).nth(1).textContent()
.then((text) => expect(text).toContain(opSubtype));
}
if(description) {
await row.locator(`td.ant-table-cell`).nth(2).textContent()
.then((text) => expect(text).toContain(description));
}
if(user) {
await row.locator(`td.ant-table-cell`).nth(3).textContent()
.then((text) => expect(text).toContain(user));
}
if(created) {
await row.locator(`td.ant-table-cell`).nth(4).textContent()
.then((text) => expect(text).toContain(created));
}
}
}