forked from wevote/WebApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVerifyCount.js
265 lines (227 loc) · 11.3 KB
/
VerifyCount.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
import { driver, expect } from '@wdio/globals';
import ReadyPage from '../page_objects/ready.page';
import TopicsPage from '../page_objects/topics.page';
import ProfilePage from '../page_objects/profile.page';
import { template } from '@babel/core';
const waitTime = 5000;
/* 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('VerifyCount', () => {
// Ready_001
it('verifyProChoiceFollowersCount', async () => {
await ReadyPage.login();
await ReadyPage.load();
await driver.pause(waitTime);
await driver.waitUntil(async () => (ReadyPage.getProChoiceLinkElement.isClickable()));
await ReadyPage.getProChoiceLinkElement.click();
await driver.waitUntil(async () => {
// Add condition to check for the expected URL
const currentUrl = await driver.getUrl();
console.log(currentUrl);
return currentUrl.includes('pro-choice');
}, {
timeout: 10000,
timeoutMsg: 'Expected URL to contain "pro-choice" not found, timeout after 10000ms',
});
await driver.switchWindow('Pro-choice - WeVote');
await driver.pause(waitTime);
await expect(driver).toHaveTitle(expect.stringContaining('Pro-choice - WeVote'));
// Checking Followers count
const circleIcon = await (TopicsPage.getProChoiceCircleIconElement).isExisting();
if (!circleIcon) {
await driver.waitUntil(async () => (TopicsPage.getProChoiceFollowElement.isClickable()));
await expect(TopicsPage.getFollowersElement).toBeDisplayed();
const textBefore = await TopicsPage.getFollowersElement.getText();
console.log(textBefore);
const followersCountBefore = parseInt(textBefore.replace(/[^0-9]/g, ""), 10);
console.log("Follower count before: " + followersCountBefore);
// Clicking Follow
await TopicsPage.getProChoiceFollowElement.click();
const textAfter = await TopicsPage.getFollowersElement.getText();
console.log(textAfter);
const followersCountAfter = parseInt(textAfter.replace(/[^0-9]/g, ""), 10);
console.log("Follower count after: " + followersCountAfter);
try {
expect(followersCountAfter).toEqual(followersCountBefore + 1);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
}
if (circleIcon) {
await driver.waitUntil(async () => (TopicsPage.getProChoiceDropdownButtonElement.isClickable()));
await expect(TopicsPage.getFollowersElement).toBeDisplayed();
const text_Before = await TopicsPage.getFollowersElement.getText();
console.log(text_Before);
const followers_CountBefore = parseInt(text_Before.replace(/[^0-9]/g, ""), 10);
console.log("Follower count before: " + followers_CountBefore);
// Clicking Unfollow
await TopicsPage.getProChoiceDropdownButtonElement.click();
await driver.waitUntil(async () => (TopicsPage.getProChoiceUnfollowElement.isClickable()));
await TopicsPage.getProChoiceUnfollowElement.click();
const text_After = await TopicsPage.getFollowersElement.getText();
console.log(text_After);
const followers_CountAfter = parseInt(text_After.replace(/[^0-9]/g, ""), 10);
console.log("Follower count after: " + followers_CountAfter);
try {
expect(followers_CountAfter).toEqual(followers_CountBefore - 1);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
}
await driver.waitUntil(async () => (TopicsPage.avatar.isClickable()));
await TopicsPage.avatar.click();
await driver.waitUntil(async () => (ProfilePage.getSignOutElement.isClickable()));
await ProfilePage.getSignOutElement.click();
});
it('verifyProChoiceEndorsersCount', async () => {
await ReadyPage.login();
await ReadyPage.load();
await driver.pause(waitTime);
await driver.waitUntil(async () => (ReadyPage.getProChoiceLinkElement.isClickable()));
await ReadyPage.getProChoiceLinkElement.click();
await driver.waitUntil(async () => {
// Add condition to check for the expected URL
const currentUrl = await driver.getUrl();
console.log(currentUrl);
return currentUrl.includes('pro-choice');
}, {
timeout: 10000,
timeoutMsg: 'Expected URL to contain "pro-choice" not found, timeout after 10000ms',
});
await driver.switchWindow('Pro-choice - WeVote');
await driver.pause(waitTime);
await expect(driver).toHaveTitle(expect.stringContaining('Pro-choice - WeVote'));
// Checking Endorsers count
await expect(TopicsPage.getEndorsementsElement).toBeDisplayed();
const endorsementsText = await TopicsPage.getEndorsementsElement.getText();
console.log(endorsementsText);
const endorsementsCount = parseInt(endorsementsText.replace(/[^0-9]/g, ""), 10);
await driver.waitUntil(async () => (TopicsPage.getAllEndorsersElement.isClickable()));
await TopicsPage.getAllEndorsersElement.click();
const element = await TopicsPage.getEndorsementsElementAfterScrollingDown;
await element.scrollIntoView();
await expect(TopicsPage.getEndorsementsElementAfterScrollingDown).toBeDisplayed();
const endorsementsTotalText = await TopicsPage.getEndorsementsElementAfterScrollingDown.getText();
console.log(endorsementsTotalText);
const totalText = endorsementsTotalText.split(" ").pop();
const totalCount = parseInt(totalText.replace(/[^0-9]/g, ""), 10);
try {
expect(endorsementsCount).toEqual(totalCount);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
await driver.waitUntil(async () => (TopicsPage.avatar.isClickable()));
await TopicsPage.avatar.click();
await driver.waitUntil(async () => (ProfilePage.getSignOutElement.isClickable()));
await ProfilePage.getSignOutElement.click();
});
it('verifyProLifeFollowersCount', async () => {
await ReadyPage.login();
await ReadyPage.load();
await driver.pause(waitTime);
await driver.waitUntil(async () => (ReadyPage.getProLifeLinkElement.isClickable()));
await ReadyPage.getProLifeLinkElement.click();
await driver.waitUntil(async () => {
// Add condition to check for the expected URL
const currentUrl = await driver.getUrl();
console.log(currentUrl);
return currentUrl.includes('pro-life');
}, {
timeout: 10000,
timeoutMsg: 'Expected URL to contain "pro-life" not found, timeout after 10000ms',
});
await driver.switchWindow('Pro-life - WeVote');
await driver.pause(waitTime);
await expect(driver).toHaveTitle(expect.stringContaining('Pro-life - WeVote'));
// Checking Followers count
const circleIcon = await (TopicsPage.getProLifeCircleIconElement).isExisting();
if (!circleIcon) {
await driver.waitUntil(async () => (TopicsPage.getProLifeFollowElement.isClickable()));
await expect(TopicsPage.getFollowersElement).toBeDisplayed();
const textBefore = await TopicsPage.getFollowersElement.getText();
console.log(textBefore);
const followersCountBefore = parseInt(textBefore.replace(/[^0-9]/g, ""), 10);
console.log("Follower count before: " + followersCountBefore);
// Clicking Follow
await TopicsPage.getProLifeFollowElement.click();
const textAfter = await TopicsPage.getFollowersElement.getText();
console.log(textAfter);
const followersCountAfter = parseInt(textAfter.replace(/[^0-9]/g, ""), 10);
console.log("Follower count after: " + followersCountAfter);
try {
expect(followersCountAfter).toEqual(followersCountBefore + 1);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
}
if (circleIcon) {
await driver.waitUntil(async () => (TopicsPage.getProLifeDropdownButtonElement.isClickable()));
await expect(TopicsPage.getFollowersElement).toBeDisplayed();
const text_Before = await TopicsPage.getFollowersElement.getText();
console.log(text_Before);
const followers_CountBefore = parseInt(text_Before.replace(/[^0-9]/g, ""), 10);
console.log("Follower count before: " + followers_CountBefore);
// Clicking Unfollow
await TopicsPage.getProLifeDropdownButtonElement.click();
await driver.waitUntil(async () => (TopicsPage.getProLifeUnfollowElement.isClickable()));
await TopicsPage.getProLifeUnfollowElement.click();
const text_After = await TopicsPage.getFollowersElement.getText();
console.log(text_After);
const followers_CountAfter = parseInt(text_After.replace(/[^0-9]/g, ""), 10);
console.log("Follower count after: " + followers_CountAfter);
try {
expect(followers_CountAfter).toEqual(followers_CountBefore - 1);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
}
await driver.waitUntil(async () => (TopicsPage.avatar.isClickable()));
await TopicsPage.avatar.click();
await driver.waitUntil(async () => (ProfilePage.getSignOutElement.isClickable()));
await ProfilePage.getSignOutElement.click();
});
it('verifyProLifeEndorsersCount', async () => {
await ReadyPage.login();
await ReadyPage.load();
await driver.pause(waitTime);
await driver.waitUntil(async () => (ReadyPage.getProLifeLinkElement.isClickable()));
await ReadyPage.getProLifeLinkElement.click();
await driver.waitUntil(async () => {
// Add condition to check for the expected URL
const currentUrl = await driver.getUrl();
console.log(currentUrl);
return currentUrl.includes('pro-life');
}, {
timeout: 10000,
timeoutMsg: 'Expected URL to contain "pro-life" not found, timeout after 10000ms',
});
await driver.switchWindow('Pro-life - WeVote');
await driver.pause(waitTime);
await expect(driver).toHaveTitle(expect.stringContaining('Pro-life - WeVote'));
// Checking Endorsers count
await expect(TopicsPage.getEndorsementsElement).toBeDisplayed();
const endorsementsText = await TopicsPage.getEndorsementsElement.getText();
console.log(endorsementsText);
const endorsementsCount = parseInt(endorsementsText.replace(/[^0-9]/g, ""), 10);
await driver.waitUntil(async () => (TopicsPage.getAllEndorsersElement.isClickable()));
await TopicsPage.getAllEndorsersElement.click();
const element = await TopicsPage.getEndorsementsElementAfterScrollingDown;
await element.scrollIntoView();
await expect(TopicsPage.getEndorsementsElementAfterScrollingDown).toBeDisplayed();
const endorsementsTotalText = await TopicsPage.getEndorsementsElementAfterScrollingDown.getText();
console.log(endorsementsTotalText);
const totalText = endorsementsTotalText.split(" ").pop();
const totalCount = parseInt(totalText.replace(/[^0-9]/g, ""), 10);
try {
expect(endorsementsCount).toEqual(totalCount);
} catch (error) {
console.warn('Assertion failed, but continuing:', error);
}
await driver.waitUntil(async () => (TopicsPage.avatar.isClickable()));
await TopicsPage.avatar.click();
await driver.waitUntil(async () => (ProfilePage.getSignOutElement.isClickable()));
await ProfilePage.getSignOutElement.click();
});
});