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

(test) O3-2428: E2E test for appointment scheduling #1062

Merged
merged 7 commits into from
May 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions e2e/pages/appointments-page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { type Page } from '@playwright/test';

export class AppointmentsPage {
constructor(readonly page: Page) {}

readonly appointmentsTable = () => this.page.getByTestId('table');

async goto(uuid: string) {
await this.page.goto(`/openmrs/spa/patient/${uuid}/chart/Appointments`);
}
}
1 change: 1 addition & 0 deletions e2e/pages/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './home-page';
export * from './registration-and-edit-page';
export * from './patient-lists-page';
export * from './appointments-page';
127 changes: 127 additions & 0 deletions e2e/specs/appointments.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
import { expect } from '@playwright/test';
import { generateRandomPatient, deletePatient, type Patient, startVisit, endVisit } from '../commands';
import { test } from '../core';
import { AppointmentsPage } from '../pages';
import { type Visit } from '@openmrs/esm-framework';

let patient: Patient;
let visit: Visit;

test.beforeEach(async ({ api }) => {
patient = await generateRandomPatient(api);
visit = await startVisit(api, patient.uuid);
});

test('Add, edit and cancel an appointment', async ({ page, api }) => {
const appointmentsPage = new AppointmentsPage(page);

await test.step('When I go to the appointment tab in the patient chart', async () => {
await appointmentsPage.goto(patient.uuid);
});

await test.step('And I click on the “Add” button', async () => {
await page.getByRole('button', { name: 'Add', exact: true }).click();
});

// FIXME: Login locations are failing to populate in this dropdown in the test environment
// await test.step('And I select Mobile Clinic location', async () => {
// await page.getByLabel('Select location').selectOption('Mobile Clinic');
// });

await test.step('And I select “Outpatient Department” service', async () => {
await page.selectOption('select#service', { label: 'Outpatient Department' });
});

await test.step('And I make appointment as “Scheduled”', async () => {
await page.getByLabel('Select an appointment type').selectOption('Scheduled');
});

await test.step('And I set date for tomorrow', async () => {
const tomorrow = new Date();
tomorrow.setDate(tomorrow.getDate() + 1);
await page.fill('input[placeholder="dd/mm/yyyy"]', tomorrow.toLocaleDateString('en-GB'));
});

await test.step('And I set the “Duration” to 60', async () => {
await page.getByLabel('Duration (minutes)').fill('60');
});

await test.step('And I add a note', async () => {
await page
.getByPlaceholder(/write any additional points here/i)
.fill('A sample note for testing out the appointment scheduling flow');
});

await test.step('And I click Save button', async () => {
await page.getByRole('button', { name: /save and close/i }).click();
});

await test.step('Then I should see a success message', async () => {
await expect(page.getByText(/appointment scheduled/i)).toBeVisible();
});

await test.step('When I click the overflow menu on the table row with the newly created appointment', async () => {
await page.getByRole('button', { name: 'Options' }).click();
});

await test.step('And I choose the "Edit" option from the popup menu', async () => {
await page.getByRole('menuitem', { name: 'Edit' }).click();
});

await test.step('When I change to “Inpatient ward” location', async () => {
await page.selectOption('select#service', { label: 'General Medicine service' });
});

await test.step('And I change to “General Medicine” Service', async () => {
await page.getByLabel('Select a service').selectOption('General Medicine service');
});

await test.step('And I change the date to Today', async () => {
const today = new Date();
today.setDate(today.getDate());
await page.fill('input[placeholder="dd/mm/yyyy"]', today.toLocaleDateString('en-GB'));
Copy link
Member

@kdaud kdaud Mar 27, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just as @denniskigen mentioned, this action changes the appointment date from what was set before (Tomorrow) to Today and thus requires in the preceding actions to switch the test to click on Today's tab before clicking the options menu...

});

await test.step('And I set the “Duration” of the appointment”', async () => {
await page.getByLabel('Duration (minutes)').fill('80');
});

await test.step('And I change the note', async () => {
await page
.getByPlaceholder('Write any additional points here')
.fill('A sample note for testing out the edit flow for scheduled appointments');
});

await test.step('And I click Save button', async () => {
await page.getByRole('button', { name: /save and close/i }).click();
});

await test.step('Then I should see a success message', async () => {
await expect(page.getByText(/appointment edited/i)).toBeVisible();
});

await test.step('When I click the "Today" tab', async () => {
await page.getByRole('tab', { name: /today/i }).click();
});

await test.step('Then I click the options kebab menu in the appointment', async () => {
await page.getByRole('button', { name: 'Options' }).click();
});
denniskigen marked this conversation as resolved.
Show resolved Hide resolved

await test.step('And I choose the "Cancel" option ', async () => {
await page.getByRole('menuitem', { name: 'Cancel' }).click();
});

await test.step('When I click the "Cancel appointment" button to confirm', async () => {
await page.getByRole('button', { name: 'danger Cancel appointment' }).click();
});

await test.step('Then I should see a success message', async () => {
await expect(page.getByText(/appointment cancelled successfully/i)).toBeVisible();
});
});

test.afterEach(async ({ api }) => {
await endVisit(api, visit.uuid);
await deletePatient(api, patient.uuid);
});