-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into fix#7036-3
- Loading branch information
Showing
25 changed files
with
562 additions
and
280 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import { afterEach, before, beforeEach, cy, describe, it } from "local-cypress"; | ||
import LoginPage from "../../pageobject/Login/LoginPage"; | ||
import { PatientPage } from "../../pageobject/Patient/PatientCreation"; | ||
import { PatientConsultationPage } from "../../pageobject/Patient/PatientConsultation"; | ||
import { | ||
emergency_phone_number, | ||
phone_number, | ||
} from "../../pageobject/constants"; | ||
import FacilityPage from "../../pageobject/Facility/FacilityCreation"; | ||
import PatientMedicalHistory from "../../pageobject/Patient/PatientMedicalHistory"; | ||
|
||
describe("Patient Creation with consultation", () => { | ||
const patientConsultationPage = new PatientConsultationPage(); | ||
const loginPage = new LoginPage(); | ||
const patientPage = new PatientPage(); | ||
const facilityPage = new FacilityPage(); | ||
const patientMedicalHistory = new PatientMedicalHistory(); | ||
const patientDateOfBirth = "01012001"; | ||
const patientOneName = "Patient With Consultation"; | ||
const patientOneGender = "Male"; | ||
const patientOneAddress = "Test Patient Address"; | ||
const patientOnePincode = "682001"; | ||
const patientOneState = "Kerala"; | ||
const patientOneDistrict = "Ernakulam"; | ||
const patientOneLocalbody = "Aluva"; | ||
const patientOneWard = "4"; | ||
const patientOneBloodGroup = "O+"; | ||
|
||
before(() => { | ||
loginPage.loginAsDisctrictAdmin(); | ||
cy.saveLocalStorage(); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.restoreLocalStorage(); | ||
cy.clearLocalStorage(/filters--.+/); | ||
cy.awaitUrl("/patients"); | ||
}); | ||
|
||
it("Create a patient with consultation", () => { | ||
patientPage.createPatient(); | ||
patientPage.selectFacility("Dummy Facility 40"); | ||
patientPage.patientformvisibility(); | ||
patientPage.typePatientPhoneNumber(phone_number); | ||
patientPage.typePatientEmergencyNumber(emergency_phone_number); | ||
patientPage.typePatientDateOfBirth(patientDateOfBirth); | ||
patientPage.typePatientName(patientOneName); | ||
patientPage.selectPatientGender(patientOneGender); | ||
patientPage.typePatientAddress(patientOneAddress); | ||
facilityPage.fillPincode(patientOnePincode); | ||
facilityPage.selectStateOnPincode(patientOneState); | ||
facilityPage.selectDistrictOnPincode(patientOneDistrict); | ||
facilityPage.selectLocalBody(patientOneLocalbody); | ||
facilityPage.selectWard(patientOneWard); | ||
patientMedicalHistory.clickNoneMedicialHistory(); | ||
patientPage.selectPatientBloodGroup(patientOneBloodGroup); | ||
patientPage.clickCreatePatient(); | ||
patientPage.verifyPatientIsCreated(); | ||
patientConsultationPage.fillIllnessHistory("history"); | ||
patientConsultationPage.selectConsultationStatus( | ||
"Outpatient/Emergency Room" | ||
); | ||
patientConsultationPage.selectSymptoms("ASYMPTOMATIC"); | ||
|
||
patientConsultationPage.enterConsultationDetails( | ||
"Stable", | ||
"Examination details and Clinical conditions", | ||
"70", | ||
"170", | ||
"IP007", | ||
"generalnote", | ||
"Dev Doctor" | ||
); | ||
patientConsultationPage.submitConsultation(); | ||
|
||
// Below code for the prescription module only present while creating a new consultation | ||
patientConsultationPage.clickAddPrescription(); | ||
patientConsultationPage.interceptMediaBase(); | ||
patientConsultationPage.selectMedicinebox(); | ||
patientConsultationPage.waitForMediabaseStatusCode(); | ||
patientConsultationPage.prescribefirstMedicine(); | ||
patientConsultationPage.enterDosage("3"); | ||
patientConsultationPage.selectDosageFrequency("Twice daily"); | ||
patientConsultationPage.submitPrescriptionAndReturn(); | ||
patientConsultationPage.verifyConsultationPatientName(patientOneName); | ||
}); | ||
|
||
it("Edit created consultation to existing patient", () => { | ||
// temporary fixing, whole file will be refactored soon | ||
cy.get("[data-cy='patient']").first().click(); | ||
patientConsultationPage.clickEditConsultationButton(); | ||
patientConsultationPage.fillIllnessHistory("editted"); | ||
patientConsultationPage.updateSymptoms("FEVER"); | ||
patientConsultationPage.setSymptomsDate("01082023"); | ||
patientConsultationPage.updateConsultation(); | ||
patientConsultationPage.verifySuccessNotification( | ||
"Consultation updated successfully" | ||
); | ||
}); | ||
|
||
afterEach(() => { | ||
cy.saveLocalStorage(); | ||
}); | ||
}); |
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
Oops, something went wrong.