-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1878 from rodekruis/feat.add-e2e-test-info-icon-o…
…pens-popover Add E2E test for: [Trigger] Info icon is clickable and opens popover
- Loading branch information
Showing
4 changed files
with
81 additions
and
0 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
53 changes: 53 additions & 0 deletions
53
tests/e2e/tests/ChatSection/ChatInfoButtonOpenPopOver.spec.ts
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,53 @@ | ||
import { test } from '@playwright/test'; | ||
import ChatComponent from 'Pages/ChatComponent'; | ||
import DashboardPage from 'Pages/DashboardPage'; | ||
import UserStateComponent from 'Pages/UserStateComponent'; | ||
import { qase } from 'playwright-qase-reporter'; | ||
import { TriggerDataSet } from 'testData/testData.enum'; | ||
|
||
import { | ||
getAccessToken, | ||
mockFloods, | ||
resetDB, | ||
} from '../../helpers/utility.helper'; | ||
import LoginPage from '../../Pages/LoginPage'; | ||
|
||
let accessToken: string; | ||
|
||
test.beforeEach(async ({ page }) => { | ||
// Login | ||
const loginPage = new LoginPage(page); | ||
|
||
accessToken = await getAccessToken(); | ||
await resetDB(accessToken); | ||
// We should maybe create one mock for all different disaster types for now we can just use floods | ||
await mockFloods( | ||
TriggerDataSet.TriggerScenario, | ||
TriggerDataSet.CountryCode, | ||
accessToken, | ||
); | ||
|
||
await page.goto('/'); | ||
await loginPage.login(TriggerDataSet.UserMail, TriggerDataSet.UserPassword); | ||
}); | ||
// https://app.qase.io/project/IBF?case=45&previewMode=side&suite=6 | ||
test( | ||
qase(45, '[Trigger] Info icon is clickable and opens popover'), | ||
async ({ page }) => { | ||
const dashboard = new DashboardPage(page); | ||
const userState = new UserStateComponent(page); | ||
const chat = new ChatComponent(page); | ||
|
||
// Navigate to disaster type the data was mocked for | ||
await dashboard.navigateToFloodDisasterType(); | ||
// Assertions | ||
await userState.headerComponentIsVisible({ | ||
countryName: TriggerDataSet.CountryName, | ||
}); | ||
await chat.chatColumnIsVisibleForTriggerState({ | ||
firstName: TriggerDataSet.firstName, | ||
lastName: TriggerDataSet.lastName, | ||
}); | ||
await chat.validateEventsInfoButtonsAreClickable(); | ||
}, | ||
); |