-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'I-TECH-UW:develop' into issue-1474
- Loading branch information
Showing
112 changed files
with
13,228 additions
and
2,247 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
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
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,58 @@ | ||
import LoginPage from "../pages/LoginPage"; | ||
|
||
let loginPage = null; | ||
let home = null; | ||
|
||
before(() => { | ||
loginPage = new LoginPage(); | ||
loginPage.visit(); | ||
|
||
home = loginPage.goToHomePage(); | ||
}); | ||
|
||
//This action runs after each test | ||
afterEach(() => { | ||
home.afterAll(); | ||
}); | ||
|
||
describe("User navigates to different tiles", function () { | ||
it("User navigates to the In Progress", function () { | ||
home.selectInProgress(); | ||
}); | ||
|
||
it("User navigates to Ready for Validation", function () { | ||
home.selectReadyforValidation(); | ||
}); | ||
|
||
it("User navigates to Orders Completed Today", function () { | ||
home.selectOrdersCompletedToday(); | ||
}); | ||
|
||
it("User navigates to Partially Completed Today", function () { | ||
home.selectPartiallyCompletedToday(); | ||
}); | ||
|
||
it("User navigates to Orders Entered By Users", function () { | ||
home.selectOrdersEnteredByUsers(); | ||
}); | ||
|
||
it("User navigates to Orders Rejected", function () { | ||
home.selectOrdersRejected(); | ||
}); | ||
|
||
it("User navigates to UnPrinted Results", function () { | ||
home.selectUnPrintedResults(); | ||
}); | ||
|
||
it("User navigates to Electronic Orders", function () { | ||
home.selectElectronicOrders(); | ||
}); | ||
|
||
it("User navigates to Average Turn Around time", function () { | ||
home.selectAverageTurnAroundTime(); | ||
}); | ||
|
||
it("User navigates to Delayed Turn Around", function () { | ||
home.selectDelayedTurnAround(); | ||
}); | ||
}); |
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.