forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiscussPage.js
416 lines (353 loc) · 20.7 KB
/
DiscussPage.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
import { browser, driver, expect } from '@wdio/globals';
import DiscussPage from '../page_objects/discuss.page';
import webAppConfig from '../../../src/js/config';
const { describe, it } = require('mocha');
const waitTime = 5000;
const email = '[email protected]';
const errorMessage = 'Enter valid email 6 to 254 characters long';
describe('Discuss Page', () => {
// Discuss_001
it('openDiscussPage', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(driver).toHaveUrl(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);//'https://quality.wevote.us/news'
await expect(driver).toHaveTitle('Discuss - WeVote');
});
//Discuss_002
it('verifyDiscussPageSpellingSignIn', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
const signInTitle = 'Sign In to Join the Discussion';
const signInSubtitle = 'WeVote is a community of friends who care about voting and democracy.';
const testAuthor = 'Alissa B., Oakland, California';
const textTestAuthor = 'Great way to sort through my ballot! My husband and I used WeVote during ' +
'the last election to learn more about our ballots and make some tough choices. ' +
'Between following various organizations, and friending a couple of trusted friends, ' +
'we felt like we had an excellent pool of information to draw from.';
const termsWrapper = "By continuing, you accept WeVote.US’s Terms of Service and Privacy Policy.";
const termsOfServiceLink = `${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/more/terms` ;
const privacyPolicyLink = `${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/privacy`;
const imageElementSizeHeight = 40;
const imageElementSizeWidth = 40;
let currentSignInTitle = await (await DiscussPage.signInTitle).getText();
let currentSignInSubtitle = await (await DiscussPage.signInSubtitle).getText();
let currentTestAuthor = await (await DiscussPage.testImoniaAuthor).getText();
// Safari adds non-breaking space at the end vs Chrome adds regular space.
// Trim to make sure we get expected results.
let currentTextTestAuthor = (await (await DiscussPage.textTestAuthor).getText()).trim();
let currentTermsWrapperText = await (await DiscussPage.termsWrapper).getText();
let currentTermsOfServiceLink = await (await DiscussPage.openTermsOfService).getAttribute('href');
let currentPrivacyPolicyLink = await (await DiscussPage.openPrivacyPolicy).getAttribute('href');
let imageElement = await DiscussPage.avatarCard;
const { height: currentSizeHeight, width: currentSizeWidth } = await imageElement.getSize();
await expect (currentSignInTitle).toBe(signInTitle);
await expect (currentSignInSubtitle).toBe(signInSubtitle);
await expect (currentTestAuthor).toBe(testAuthor);
await expect (currentTextTestAuthor).toBe(textTestAuthor);
await expect (currentTermsWrapperText).toBe(termsWrapper);
await expect (currentTermsOfServiceLink).toBe(termsOfServiceLink);
await expect (currentPrivacyPolicyLink).toBe(privacyPolicyLink);
await expect (imageElement).toBeDisplayed();
await expect (currentSizeHeight).toBe(imageElementSizeHeight);
await expect (currentSizeWidth).toBe(imageElementSizeWidth);
});
// // Clarify test case
// // // Discuss_003
// // it('verifyDiscussPageBlankSpace', async () => {
// // await DiscussPage.load();
// // });
// Discuss_004
it('verifyvoterEmailAddressVerificationButton', async () => {
await DiscussPage.load();
await driver.pause(waitTime);
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
await driver.pause(waitTime);
element.setValue(email);
await driver.pause(waitTime);
await driver.waitUntil(async () => ((DiscussPage.toggleEmailVerificationButton)));
});
// Discuss_005
it('verifyEmailPlaceholderText', async () => {
await DiscussPage.load();
await driver.pause(waitTime);
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await driver.pause(waitTime);
const enterVoterEmailAddressTextBoxElement = await DiscussPage.enterVoterEmailAddressTextBox;
const placeholderText = await enterVoterEmailAddressTextBoxElement.getAttribute('placeholder'); // Retrieve and wait for the placeholder text
await driver.pause(waitTime);
await expect(placeholderText).toBe('Type email here...');
console.log(placeholderText); // Output the placeholder text
});
// Discuss_006
it('verifyEmailButtons', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
const enterVoterEmailAddressTextBoxElement = await DiscussPage.enterVoterEmailAddressTextBox;
await enterVoterEmailAddressTextBoxElement.click();
await driver.pause(waitTime);
const emailCancelElement = await DiscussPage.cancelEmailButton;
const emailVerificationElement = await DiscussPage.voterEmailAddressVerificationButton;
await expect(emailCancelElement).toBeDisplayed();
await expect(emailVerificationElement).toBeDisplayed();
});
// Discuss_007
it('verifyTabKeySelectEnterVoterEmailAddressTextBox', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
const element = await DiscussPage.enterVoterEmailAddressTextBox;
const elementId = await element.getAttribute('id');
const voterEmailAddressTextBox = await DiscussPage.tabToSelectElement(driver, elementId);
if (voterEmailAddressTextBox) {
await voterEmailAddressTextBox.setValue(email);
} else {
throw new Error('Element with ID ' + elementId + ' not found or not reachable while selectig with Tab.');
}
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(await element.getAttribute('value')).toBe(email);
});
// Discuss_008
it('verifyTabKeySelectEmailCancelButton', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
const element = await DiscussPage.enterVoterEmailAddressTextBox;
const elementId = await element.getAttribute('id');
const voterEmailAddressTextBox = await DiscussPage.tabToSelectElement(driver, elementId);
if (voterEmailAddressTextBox) {
await voterEmailAddressTextBox.setValue(email);
} else {
throw new Error('Element with ID ' + elementId + ' not found or not reachable while selectig with Tab.');
}
await expect(DiscussPage.cancelEmailButton).toBeClickable();
const elementCancelButton = await DiscussPage.cancelEmailButton;
const elementCancelButtonId = await elementCancelButton.getAttribute('id');
const cancelButton = await DiscussPage.tabToSelectElement(driver, elementCancelButtonId);
if (cancelButton) {
await elementCancelButton.click();
} else {
throw new Error('Element with ID ' + elementCancelButtonId + ' not found or not reachable while selectig with Tab.');
}
await expect(DiscussPage.cancelEmailButton).not.toBeClickable();
await expect(DiscussPage.cancelEmailButton).not.toBeDisplayed();
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeDisplayed();
});
// Discuss_009
it('verifyEmailTyped', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
await element.setValue('[email protected]');
await driver.pause(waitTime);
// Get the value of the email text box
const enterVoterEmailAddressTextBoxValue = await element.getValue();
// Check if the value of the email text box is '[email protected]'
await expect(enterVoterEmailAddressTextBoxValue).toBe('[email protected]');
});
// // Discuss_010
// it('pasteEmailVerification', async () => {
// await DiscussPage.load();
// await driver.switchWindow('https://quality.wevote.us/news');
// await expect(driver).toHaveUrl('https://quality.wevote.us/news');
// await expect(driver).toHaveTitle('Discuss - WeVote');
// });
// // Discuss_011
// it('pasteRightClickEmailVerification', async () => {
// await DiscussPage.load();
// await driver.switchWindow('https://quality.wevote.us/news');
// await expect(driver).toHaveUrl('https://quality.wevote.us/news');
// await expect(driver).toHaveTitle('Discuss - WeVote');
// });
// Discuss_013
it('invalidEmailVerification', async () => {
const colorElementAddressHelperText = 'rgb(211,47,47)';
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('11111');
await driver.pause(waitTime);
let currentColorElementAddressHelperText = (await (await DiscussPage.voterEmailAddressHelperText).getCSSProperty('color')).value;
currentColorElementAddressHelperText = currentColorElementAddressHelperText.replace(/rgba?\((\d+,\d+,\d+)(,\d+)?\)/, 'rgb($1)');
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).toBeDisplayed();
await expect(await (await DiscussPage.voterEmailAddressHelperText)
.getText()).toBe(errorMessage);
await expect(currentColorElementAddressHelperText).toBe(colorElementAddressHelperText);
});
// Discuss_014
it('missing@EmailVerification', async () => {
const elementColor = 'rgb(211,47,47)';
const emailAddressLableText = 'Email';
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('wevotewevote.us');
await driver.pause(waitTime);
let currentColorElementAddressHelperText = (await (await DiscussPage.voterEmailAddressHelperText).getCSSProperty('color')).value;
currentColorElementAddressHelperText = currentColorElementAddressHelperText.replace(/rgba?\((\d+,\d+,\d+)(,\d+)?\)/, 'rgb($1)');
let currentColorElementAddressLabel = (await (await DiscussPage.voterEmailAddressLabel).getCSSProperty('color')).value;
currentColorElementAddressLabel = currentColorElementAddressLabel.replace(/rgba?\((\d+,\d+,\d+)(,\d+)?\)/, 'rgb($1)');
let currentEmailAdderssLabelText = await (await DiscussPage.voterEmailAddressLabel).getText();
await expect(currentEmailAdderssLabelText).toBe(emailAddressLableText);
await expect(currentColorElementAddressHelperText).toBe(elementColor);
await expect(currentColorElementAddressLabel).toBe(elementColor);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).toBeDisplayed();
await expect(await (await DiscussPage.voterEmailAddressHelperText)
.getText()).toBe(errorMessage);
});
// Discuss_015
it('capitalLetterEmailVerification', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
});
// Discuss_017
it('numberEmailVerification', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
});
// Discuss_018
it('periodEmailVerification', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
});
// Discuss_019
it('underscoreEmailVerification', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
});
// Discuss_020
it('dashEmailVerification', async () => {
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
});
//Discuss_021
it('periodStartEmailVerification', async () => {
const elementColor = 'rgb(211,47,47)';
const emailAddressLableText = 'Email';
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
await expect(DiscussPage.voterEmailAddressHelperText).not.toBeDisplayed();
const element = await DiscussPage.enterVoterEmailAddressTextBox;
element.setValue('[email protected]');
await driver.pause(waitTime);
let currentColorElementAddressHelperText = (await (await DiscussPage.voterEmailAddressHelperText).getCSSProperty('color')).value;
let currentColorElementAddressLabel = (await (await DiscussPage.voterEmailAddressLabel).getCSSProperty('color')).value;
currentColorElementAddressHelperText = currentColorElementAddressHelperText.replace(/rgba?\((\d+,\d+,\d+)(,\d+)?\)/, 'rgb($1)');
currentColorElementAddressLabel = currentColorElementAddressLabel.replace(/rgba?\((\d+,\d+,\d+)(,\d+)?\)/, 'rgb($1)');
let currentEmailAdderssLabelText = await (await DiscussPage.voterEmailAddressLabel).getText();
let elementAddressHelperText = await DiscussPage.voterEmailAddressHelperText;
await expect(await elementAddressHelperText.getText()).toEqual(errorMessage);
await expect(currentEmailAdderssLabelText).toBe(emailAddressLableText);
await expect(currentColorElementAddressHelperText).toBe(elementColor);
await expect(currentColorElementAddressLabel).toBe(elementColor);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
});
// Test case fails
// Discuss_022
// it('underscoreStartEmailVerification', async () => {
// await DiscussPage.load();
// await driver.switchWindow('https://quality.wevote.us/news');
// await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
// const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
// element.setValue('[email protected]');
// await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
// });
// Test case fails
// // Discuss_023
// it('dashStartEmailVerification', async () => {
// await DiscussPage.load();
// await driver.switchWindow('https://quality.wevote.us/news');
// await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
// const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
// element.setValue('[email protected]');
// await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
// });
// Discuss_024
it('domainEmailVerification', async () => {
await DiscussPage.load();
await driver.pause(waitTime);
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
element.setValue('@wevote.us');
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
});
// Discuss_026
it('spaceEmailVerification', async () => {
const email = 'we [email protected]';
const emailWithoutSpaces = email.replace(/\s+/g, '');
const browserName = browser.capabilities.browserName;
await DiscussPage.load();
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
element.setValue(email);
await driver.pause(waitTime);
//Chrome checks for whitespace in email input and prevents entry. Safari does not enforce this restriction.
if (browserName == 'Safari') {
await expect(await (await DiscussPage.enterVoterEmailAddressTextBox).getValue()).toBe(email);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
} else {
await expect(await (await DiscussPage.enterVoterEmailAddressTextBox).getValue()).toBe(emailWithoutSpaces);
await expect(DiscussPage.voterEmailAddressVerificationButton).toBeClickable();
}
});
// Discuss_025
it('symbolEmailVerification', async () => {
await DiscussPage.load();
await driver.pause(waitTime);
await driver.switchWindow(`${webAppConfig.WE_VOTE_URL_PROTOCOL + webAppConfig.WE_VOTE_HOSTNAME}/news`);
await driver.pause(waitTime);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
const element = await DiscussPage.enterVoterEmailAddressTextBox; // Locate the text box element using a selector
const symbolsArray = ['~', '`', '!', '#', '$', '%', '\'', '^', '&', '*', '(', ')', '+', '=', '\\', ']', '[', '{', '}', '|', '"', ':', ';', '?', '/', '>', ',', '<'];
for (let i = 0; i < symbolsArray.length; i++) {
await element.setValue(symbolsArray[i]);
await expect(DiscussPage.voterEmailAddressVerificationButton).not.toBeClickable();
}
});
});