Browse Source

feat(testing): Reduced flakyness

pull/3848/head
Muhammed Mustafa 2 years ago
parent
commit
ec18a51172
  1. 11
      scripts/playwright/pages/Dashboard/Grid/index.ts

11
scripts/playwright/pages/Dashboard/Grid/index.ts

@ -66,9 +66,9 @@ export class GridPage extends BasePage {
.locator(`span[title="${columnHeader}"]`)
.click();
await this.rootPage.waitForResponse(async (res) => {
return (await res.json())[columnHeader] === value;
});
await this.rootPage.waitForResponse(async (res) => {
return (await res.json())[columnHeader] === value;
});
}
async verifyRow({ index }: { index: number }) {
@ -162,6 +162,11 @@ export class GridPage extends BasePage {
async clickPagination({ page }: { page: string }) {
(await this.pagination({ page })).click();
await this.rootPage.waitForResponse(async (res) => {
return (await res.json())?.pageInfo;
});
await this.waitLoading();
}

Loading…
Cancel
Save