Skip to content

Commit fd5865f

Browse files
committed
Client : E2E Tests : Updated tests
1 parent 98ab1fd commit fd5865f

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

client/tests/e2e/1-user-account/3.1-update-edit.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test.describe("1.3.1 User Accounts - UPDATE Edit", () => {
1616
const uuid = addBrowserSuffixToText(baseUuid, testInfo);
1717
const lastName = addBrowserSuffixToText(baseLastName, testInfo);
1818

19-
await userAccountsPage.search(lastName, page);
19+
await userAccountsPage.search(lastName);
2020
const userAccountPage = await userAccountsPage.clickEditIcon(uuid);
2121

2222
await userAccountPage.expectVisible();

client/tests/e2e/1-user-account/models/playwright-user-accounts-page.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,9 @@ export class PlaywrightUserAccountsPage {
191191
await this.cancelButton.click();
192192
}
193193

194-
async search(value: string, page: Page) {
195-
await page.waitForTimeout(500);
194+
async search(value: string) {
196195
await this.fillSearch(value);
197196
await this.searchByButton();
198-
await page.waitForTimeout(500);
199197
}
200198

201199
statusChipFilter(status: "Active" | "Inactive"): Locator {

0 commit comments

Comments
 (0)