forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBallotPage.js
59 lines (44 loc) · 1.98 KB
/
BallotPage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* eslint-disable no-unused-vars */
import { driver, expect, browser } from '@wdio/globals';
import ReadyPage from '../page_objects/ready.page';
import BallotPage from '../page_objects/ballot.page';
const { describe, it } = require('mocha');
const waitTime = 5000;
const verifyAddressModal = async () => {
await (BallotPage.getBallotAddressElement).click();
await driver.pause(waitTime);
await expect(BallotPage.getBallotModalTitleElement).toHaveText('Enter Your Address');
};
beforeEach(async function () {
if (this.currentTest.title !== 'verifyBallotPageLinksNavigations') {
// Skip for the specific test case
await ReadyPage.load();
await driver.maximizeWindow();
await driver.pause(waitTime);
}
});
describe('Ballot Page', async () => {
it('verifyBallotPageLinksNavigations', async () => {
await ReadyPage.load();
await driver.maximizeWindow();
await expect(BallotPage.getViewBallotElement).toBeClickable();
await (BallotPage.getViewBallotElement).click();
await expect(browser).toHaveUrl(expect.stringContaining('ballot'));
await expect(BallotPage.getBallotTopElement).toBeClickable();
await expect(browser).toHaveUrl(expect.stringContaining('ballot'));
});
it('verifyBallotAddressLinks', async () => {
await verifyAddressModal();
await (BallotPage.getBallotModalCloseElement).click();
await (await BallotPage.getBallotTopElement).click();
await verifyAddressModal();
});
it('validateBallotModalUIComponents', async () => {
await (await BallotPage.getBallotAddressElement).click();
await expect(BallotPage.getBallotModalInputElement).toBeDisplayed();
await (await BallotPage.getBallotModalInputElement).click();
await expect(await BallotPage.getBallotModalInputElement.getAttribute('placeholder')).toBe('Street number, full address and ZIP...');
await expect(await BallotPage.getBallotModalSaveElement).toBeClickable();
await expect(await BallotPage.getBallotModalCancelElement).toBeClickable();
});
});