-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Cypress Test to verify functionality of Doctor Connect (#8791)
- Loading branch information
Showing
5 changed files
with
98 additions
and
5 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,56 @@ | ||
import { DoctorConnect } from "pageobject/Patient/PatientDoctorConnect"; | ||
import LoginPage from "../../pageobject/Login/LoginPage"; | ||
import { PatientPage } from "../../pageobject/Patient/PatientCreation"; | ||
|
||
describe("Patient Doctor Connect in consultation page", () => { | ||
const loginPage = new LoginPage(); | ||
const patientPage = new PatientPage(); | ||
const doctorconnect = new DoctorConnect(); | ||
const patientName = "Dummy Patient 11"; | ||
const doctorUser = "Dev Doctor"; | ||
const doctorUserNumber = "+919876543219"; | ||
const nurseUser = "Dev Staff"; | ||
const teleIcuUser = "Dev Doctor Two"; | ||
|
||
before(() => { | ||
loginPage.loginAsDisctrictAdmin(); | ||
cy.saveLocalStorage(); | ||
}); | ||
|
||
beforeEach(() => { | ||
cy.restoreLocalStorage(); | ||
cy.clearLocalStorage(/filters--.+/); | ||
cy.awaitUrl("/patients"); | ||
}); | ||
|
||
it("Patient Doctor connect phone redirection and sort by filter", () => { | ||
// click on the slideover and verify icon redirection | ||
patientPage.visitPatient(patientName); | ||
doctorconnect.clickDoctorConnectButton(); | ||
// verify all the users are visible under the all section | ||
cy.verifyContentPresence("#doctor-connect-home-doctor", [doctorUser]); | ||
cy.verifyContentPresence("#doctor-connect-home-nurse", [nurseUser]); | ||
cy.verifyContentPresence("#doctor-connect-remote-doctor", [teleIcuUser]); | ||
// verify copy content button functionality | ||
doctorconnect.CopyFunctionTrigger(); | ||
doctorconnect.clickCopyPhoneNumber( | ||
"#doctor-connect-home-doctor", | ||
doctorUser, | ||
); | ||
doctorconnect.verifyCopiedContent(doctorUserNumber); | ||
// verify the whatsapp and phone number icon presence | ||
doctorconnect.verifyIconVisible("#whatsapp-icon"); | ||
doctorconnect.verifyIconVisible("#phone-icon"); | ||
// sort the each datas based on user type | ||
doctorconnect.clickUsersSortBy("Doctor"); | ||
cy.verifyContentPresence("#doctor-connect-home-doctor", [doctorUser]); | ||
doctorconnect.clickUsersSortBy("Nurse"); | ||
cy.verifyContentPresence("#doctor-connect-home-nurse", [nurseUser]); | ||
doctorconnect.clickUsersSortBy("TeleICU Doctor"); | ||
cy.verifyContentPresence("#doctor-connect-remote-doctor", [teleIcuUser]); | ||
}); | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
export class DoctorConnect { | ||
clickDoctorConnectButton() { | ||
cy.get("#doctor-connect-button").scrollIntoView(); | ||
cy.get("#doctor-connect-button").click(); | ||
} | ||
|
||
CopyFunctionTrigger() { | ||
cy.window().then((win) => { | ||
cy.stub(win.navigator.clipboard, "writeText").as("clipboardStub"); | ||
}); | ||
} | ||
|
||
verifyCopiedContent(text: string) { | ||
cy.get("@clipboardStub").should("be.calledWith", text); | ||
} | ||
|
||
verifyIconVisible(selector: string) { | ||
cy.get(selector).should("be.visible"); | ||
} | ||
|
||
clickCopyPhoneNumber(element: string, text: string) { | ||
cy.get(element) | ||
.contains(text) // Find the element containing "dev doctor" | ||
.parent() // Move up to the parent element (if necessary) | ||
.find("#copy-phoneicon") // Find the #copy-phoneicon within that context | ||
.click(); | ||
} | ||
|
||
clickUsersSortBy(text: string) { | ||
cy.get("#doctor-connect-filter-tabs").contains(text).click(); | ||
} | ||
} |
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