forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooterLinks.js
132 lines (122 loc) · 5.38 KB
/
FooterLinks.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import { driver, expect, browser } from '@wdio/globals';
import ReadyPage from '../page_objects/ready.page';
import FooterlinksPage from '../page_objects/footerlinks.page';
import DonatePage from '../page_objects/donate.page';
const waitTime = 5000;
async function switchWindow(currentWindowHandle, allWindows) {
for (const window of allWindows) {
if (window !== currentWindowHandle) {
await driver.switchToWindow(window);
break;
}
}
}
/* eslint-disable no-undef */
// This eslint-disable turns off warnings for describe() and it()
// We don't need those warnings, because describe() and it() are available at runtime
// https://webdriver.io/docs/pageobjects
describe('Footer Links Navigation', () => {
// FooterLinks_001 & FooterLinks_002
it('verifyPrivacyLinkRedirected & Terms link @BVT', async () => {
console.log('Tcs : FooterLinks_001 && FooterLinks_002');
await ReadyPage.load();
await driver.pause(waitTime);
await FooterlinksPage.findPrivacyLink.click();
await driver.pause(waitTime);
await expect(driver).toHaveUrl(expect.stringContaining('privacy'));
await driver.pause(waitTime);
await expect(browser).toHaveTitle('Privacy Policy - WeVote');
console.log('Verified Privacy link on the ready page');
await ReadyPage.wevoteLogo.findAndClick();
await driver.pause(waitTime);
await FooterlinksPage.getTermsLinkElement.click();
await driver.pause(waitTime);
await expect(browser).toHaveTitle('Terms of Service - WeVote');
});
// FooterLinks_003 and FooterLinks_004
it('verifyHowItWorksModalWindowOpen and verifyHowItWorksModalWindowClosed @BVT', async () => {
console.log('Tcs : FooterLinks_003 and FooterLinks_004');
await ReadyPage.load();
await driver.pause(waitTime);
await FooterlinksPage.clickHowItWorksLink();
await driver.pause(waitTime);
await expect(FooterlinksPage.howItWorksTitle).toHaveText('1. Choose your interests');
await FooterlinksPage.closeHowItWorksModalWindow();
await driver.pause(waitTime);
await expect(FooterlinksPage.elementHowItWorksWindow).not.toBeDisplayed();
});
// FooterLinks_005
it('verifyHelpLink @BVT', async () => {
console.log('Tcs : FooterLinks_005');
await ReadyPage.load();
await driver.pause(waitTime);
const readyWindow = await driver.getWindowHandle();
await FooterlinksPage.getHelpLinkElement.click();
await driver.pause(waitTime);
let allWindows = await driver.getWindowHandles();
await switchWindow(readyWindow, allWindows);
await expect(driver).toHaveUrl(expect.stringContaining('/hc/en-us'));
await expect(FooterlinksPage.getHelpPageTitleElement).toHaveText('Frequently Asked Questions');
await driver.closeWindow();
await driver.switchToWindow(readyWindow);
});
// FooterLinks_006
it('verifyTeamLink @BVT', async () => {
console.log('FooterLinks_006');
await ReadyPage.load();
await driver.pause(waitTime);
const readyWindow = await driver.getWindowHandle();
await FooterlinksPage.getTeamLinkElement.click();
await driver.pause(waitTime);
let allWindows = await driver.getWindowHandles();
await switchWindow(readyWindow, allWindows);
await expect(driver).toHaveUrl(expect.stringContaining('/more/about'));
await expect(FooterlinksPage.getTeamPageTitleElement).toHaveText('About WeVote');
await driver.closeWindow();
await driver.switchToWindow(readyWindow);
});
// FooterLinks_007
it('verifyCreditsAndThanksLink @BVT', async () => {
console.log('Tcs : FooterLinks_007');
await ReadyPage.load();
await driver.pause(waitTime);
const readyWindow = await driver.getWindowHandle();
await FooterlinksPage.getCreditsAndThanksElement.click();
await driver.pause(waitTime);
let allWindows = await driver.getWindowHandles();
await switchWindow(readyWindow, allWindows);
await expect(driver).toHaveUrl(expect.stringContaining('/more/credits'));
await expect(FooterlinksPage.getCreditsAndThanksPageTitleElement).toHaveText('Credits & Thanks');
await driver.closeWindow();
await driver.switchToWindow(readyWindow);
});
// FooterLinks_008
it('verifyVolunteeringOpportunitiesLink @BVT', async () => {
console.log('Tcs : FooterLinks_008');
await ReadyPage.load();
await driver.pause(waitTime);
const readyWindow = await driver.getWindowHandle();
await FooterlinksPage.getVolunteeringOpportunitiesElement.click();
await driver.pause(waitTime);
let allWindows = await driver.getWindowHandles();
await switchWindow(readyWindow, allWindows);
await expect(driver).toHaveUrl(expect.stringContaining('/apply'));
await expect(FooterlinksPage.getVolunteeringOpportunitiesPageTitleElement).toHaveText('Current Openings');
await driver.closeWindow();
await driver.switchToWindow(readyWindow);
});
// FooterLinks_009
it('verifyDonateLinkRedirected @BVT', async () => {
console.log('Tcs : FooterLinks_009');
await ReadyPage.load();
await driver.pause(waitTime + 2000);
await browser.scroll(0, 200);
await driver.pause(waitTime);
await FooterlinksPage.getDonateLinkLocator.click();
await driver.pause(waitTime);
await expect(driver).toHaveUrl(expect.stringContaining('donate'));
await driver.pause(waitTime);
await expect(FooterlinksPage.getDonatePageContentTitleElement).toHaveText('Want more Americans to vote?');
await expect(browser).toHaveTitle('Donate - WeVote');
});
});