-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
C2C-341: E2E tests for diagnosis workflows. (#12)
- Loading branch information
Showing
5 changed files
with
116 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
|
||
import { test, expect } from '@playwright/test'; | ||
import { Bahmni } from '../utils/functions/bahmni'; | ||
|
||
let bahmni: Bahmni; | ||
|
||
test.beforeEach(async ({ page }) => { | ||
bahmni = new Bahmni(page); | ||
|
||
await bahmni.login(); | ||
await expect(page.getByText(/registration/i)).toBeVisible(); | ||
await expect(page.getByText(/linical/i)).toBeVisible(); | ||
await expect(page.getByText(/admin/i)).toBeVisible(); | ||
await expect(page.getByText(/appointment scheduling/i)).toBeVisible(); | ||
await expect(page.getByText(/patient documents/i)).toBeVisible(); | ||
}); | ||
|
||
test('Create and revise a diagnosis.', async ({ page }) => { | ||
// setup | ||
await bahmni.registerPatient(); | ||
|
||
// replay | ||
await bahmni.navigateToDiagnosis(); | ||
await page.locator('#name-0').fill('Candidiasis (B37.9)'); | ||
await page.getByText('Candidiasis (B37.9)').click(); | ||
await page.locator('#order-0').getByRole('button', { name: /primary/i }).click(); | ||
await page.locator('#certainty-0').getByRole('button', { name: /confirmed/i }).click(); | ||
await bahmni.saveOrder(); | ||
|
||
// verify creation | ||
await page.locator('#dashboard-link span.patient-name').click(); | ||
await expect(page.locator('#diagnosisName')).toContainText(/candidiasis/i); | ||
await expect(page.locator('#order')).toContainText(/primary/i); | ||
await expect(page.locator('#certainty')).toContainText(/confirmed/i); | ||
|
||
// verify revision | ||
await page.locator('#view-content :nth-child(1).btn--success').click(); | ||
await page.locator('#opd-tabs').getByText('Diagnosis').click(); | ||
await page.locator('i.fa.fa-edit').first().click(); | ||
const diagnosisOrderButton = await page.getByRole('button', { name: 'SECONDARY' }).nth(1); | ||
await diagnosisOrderButton.waitFor({ state: 'visible' }); | ||
await diagnosisOrderButton.focus(); | ||
await diagnosisOrderButton.click(); | ||
await bahmni.saveOrder(); | ||
await page.locator('#dashboard-link span.patient-name').click(); | ||
await expect(page.locator('#diagnosisName')).toContainText(/candidiasis/i); | ||
await expect(page.locator('#order')).toContainText(/secondary/i); | ||
await expect(page.locator('#certainty')).toContainText(/confirmed/i); | ||
}); | ||
|
||
test.afterEach(async ({ page }) => { | ||
await bahmni.voidPatient(); | ||
await page.close(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters