Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve mosearch #5476

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion playwright-e2e/pages/manage-organisation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ export class Organisation extends BasePage {
await this.showcaseFilterButton.click();
await this.caseNumberSearchText.fill(caseNumber);
await this.applyFilterButton.click();
await expect(this.page.getByLabel('CARE_SUPERVISION_EPO')).toContainText('Showing 1 to 1 of 1 CARE_SUPERVISION_EPO cases');
await this.page.waitForLoadState("load");
await expect(this.page.getByText('of 1 CARE_SUPERVISION_EPO',{exact:true})).toBeVisible();
await this.page.getByText('Showing 1 to 1 of 1 CARE_SUPERVISION_EPO casesSelect any CARE_SUPERVISION_EPO').click();
await expect(this.page.getByText(`${caseName}`,{exact:true})).toBeVisible();
}
Expand Down
Loading