forked from BugorDmitriy/OpenWeatherJavaProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooterMenuTest.java
More file actions
416 lines (312 loc) · 14.8 KB
/
Copy pathFooterMenuTest.java
File metadata and controls
416 lines (312 loc) · 14.8 KB
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
package tests;
import base.BaseTest;
import org.testng.Assert;
import org.testng.annotations.Test;
import pages.MainPage;
import pages.TestData;
import pages.WeatherStationsPage;
import pages.footer_menu.AboutUsPage;
import pages.footer_menu.TechnologyPage;
import pages.footer_menu.WidgetsPage;
import pages.home.HomeAskQuestionPage;
import pages.top_menu.PricePage;
import pages.top_menu.WeatherDashboardPage;
import tests.retrytest.Retry;
import utils.TestUtils;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;
public class FooterMenuTest extends BaseTest {
@Test
public void testSocialPanelIconsNavigateToCorrespondingWebSites() {
final List<String> links = List.of(
"https://www.facebook.com/groups/270748973021342/?mibextid=6NoCDW",
"https://twitter.com/OpenWeatherMap",
"https://www.linkedin.com/uas/login?session_redirect=%2Fcompany%2F9816754",
"https://openweathermap.medium.com/",
"https://t.me/openweathermap",
"https://github.com/search?q=openweathermap&ref=cmdform]"
);
final List<String> expectedDomains = List.of(
"www.facebook.com",
"twitter.com",
"www.linkedin.com",
"openweathermap.medium.com",
"t.me",
"github.com"
);
Assert.assertEquals(links.size(), expectedDomains.size());
for (int i = 0; i < links.size(); i++) {
String expectedDomain = expectedDomains.get(i);
URL url = null;
try {
url = new URL(links.get(i));
} catch (MalformedURLException e) {
e.printStackTrace();
}
Assert.assertNotNull(url);
String actualDomain = url.getHost();
Assert.assertEquals(actualDomain, expectedDomain);
}
}
@Test
public void testStorePanelExistsAndHasIcons() {
final int expectedQuantity = 2;
MainPage mainPage = openBaseURL()
.scrollToFooterMenu();
Assert.assertTrue(mainPage.isStorePanelDisplayed(), " StorePanel is not displayed ");
Assert.assertEquals(mainPage.getStoresIconsCount(), expectedQuantity);
}
@Test
public void testSocialPanelExistsAndHasIcons() {
final int expectedIconsQuantity = 6;
MainPage mainPage = openBaseURL()
.scrollToFooterMenu();
Assert.assertTrue(mainPage.isSocialPanelDisplayed(), " SocialPanel is not displayed ");
Assert.assertEquals(mainPage.getSocialPanelSize(), expectedIconsQuantity);
}
@Test
public void testSubscriptionText() {
List<String> expectedSubscriptionTexts = List.of(
"How to start",
"Pricing",
"Subscribe for free",
"FAQ"
);
List<String> actualSubscriptionTexts =
openBaseURL()
.scrollToSubscriptionFooterMenu()
.getSubscriptionMenusTexts();
Assert.assertTrue(actualSubscriptionTexts.size() > 0);
Assert.assertEquals(actualSubscriptionTexts, expectedSubscriptionTexts);
}
@Test
public void testOurTechnologyFooterLinkNavigatesToTechnologyPage() {
final String expectedURL = "https://openweathermap.org/technology";
final String expectedTitle = "Weather model - OpenWeatherMap";
final String oldURL = openBaseURL().getCurrentURL();
TechnologyPage technologyPage = new MainPage(getDriver())
.scrollToFooterMenu()
.clickOurTechnologyFooterMenu();
String actualTitle = technologyPage.getTitle();
String actualURL = technologyPage.getCurrentURL();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test
public void testPrivacyPolicyFooterLinkNavigatesToPrivacyPolicyWeb() {
final String expectedURL = "https://openweather.co.uk/privacy-policy";
final String expectedTitle = "Privacy policy - OpenWeatherMap";
final String oldURL = openBaseURL().getCurrentURL();
MainPage mainPage = new MainPage(getDriver());
mainPage.scrollToFooterMenu()
.clickPrivacyPolicyFooterMenu();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), oldURL);
Assert.assertEquals(getExternalPageURL(), expectedURL);
Assert.assertEquals(getExternalPageTitle(), expectedTitle);
}
@Test
public void testWeatherDashboardLinkNavigatesToWeatherDashboardPage() {
final String expectedURL = "https://openweathermap.org/weather-dashboard";
final String expectedTitle = "Weather dashboard - OpenWeatherMap";
final String oldURL = openBaseURL().getCurrentURL();
String actualURL = new MainPage(getDriver())
.scrollToFooterMenu()
.clickWeatherDashboardFooterMenu()
.getCurrentURL();
String actualTitle = new WeatherDashboardPage(getDriver()).getTitle();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test
public void testAboutUsFooterLinkNavigatesToAboutUsPage() {
final String expectedTitle = "About us - OpenWeatherMap";
final String expectedUrl = "https://openweathermap.org/about-us";
final String oldURL = openBaseURL().getCurrentURL();
String actualURL = new MainPage(getDriver())
.scrollToFooterMenu()
.clickAboutUsFooterMenu()
.waitForAboutUsPageHeaderBeVisible()
.getCurrentURL();
String actualTitle = new AboutUsPage(getDriver()).getTitle();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedUrl);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test
public void testWidgetsFooterLinkNavigatesToWidgetsPage() {
final String expectedURL = "https://openweathermap.org/widgets-constructor";
final String expectedTitle = "Weather widgets constructor - OpenWeatherMap";
final String oldURL = openBaseURL().getCurrentURL();
String actualURL = new MainPage(getDriver())
.scrollToFooterMenu()
.clickWidgetsPageFooterMenu()
.getCurrentURL();
String actualTitle = new WidgetsPage(getDriver()).getTitle();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test(retryAnalyzer = Retry.class)
public void testAppStoreIconNavigatesToAppStoreWeb() {
final String expectedAppStoreURL = "https://apps.apple.com/gb/app/openweather/id1535923697";
final String expectedTitle = "OpenWeather";
String oldURL = openBaseURL().getCurrentURL();
MainPage mainPage = new MainPage(getDriver());
mainPage.scrollToFooterMenu()
.clickAppStoreIcon();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), oldURL);
Assert.assertEquals(getExternalPageURL(), expectedAppStoreURL);
Assert.assertTrue(getExternalPageTitle().contains(expectedTitle),
" ExternalPageTitle does not contain 'OpenWeather' ");
}
@Test
public void testGitHubIconNavigatesToGitHubWeb() {
final String expectedURL = "https://github.com/search?q=openweathermap&ref=cmdform";
final String expectedTitle = "Search · openweathermap · GitHub";
String oldURL = openBaseURL()
.scrollToFooterMenu()
.getCurrentURL();
MainPage mainPage = new MainPage(getDriver());
mainPage.clickGitHubIcon();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), oldURL);
Assert.assertEquals(getExternalPageURL(), expectedURL);
Assert.assertEquals(getExternalPageTitle(), expectedTitle);
}
@Test
public void testPricingFooterLinkNavigatesToPricePage() {
final String expectedURL = "https://openweathermap.org/price";
final String expectedTitle = "Pricing - OpenWeatherMap";
final String oldURL = openBaseURL()
.getCurrentURL();
String actualURL = new MainPage(getDriver())
.scrollToFooterMenu()
.clickPricingFooterMenu()
.getCurrentURL();
String actualTitle = new PricePage(getDriver()).getTitle();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test
public void testConnectYourWeatherStationFooterLinkNavigatesToWeatherStationsPage() {
final String expectedWeatherStationsUrl = "https://openweathermap.org/stations";
final String expectedWeatherStationsTitle = "Weather Stations - OpenWeatherMap";
final String oldURL = openBaseURL().getCurrentURL();
WeatherStationsPage weatherStationsPage =
openBaseURL()
.scrollToFooterMenu()
.clickConnectYourWeatherStationFooterMenu();
String actualWeatherStationsUrl = weatherStationsPage.getCurrentURL();
String actualWeatherStationsTitle = weatherStationsPage.getTitle();
Assert.assertNotEquals(actualWeatherStationsUrl, oldURL);
Assert.assertEquals(actualWeatherStationsUrl, expectedWeatherStationsUrl);
Assert.assertEquals(actualWeatherStationsTitle, expectedWeatherStationsTitle);
}
@Test
public void testAskQuestionFooterLinkNavigatesToHomeAskQuestionPage() {
final String expectedTitle = "Members";
final String expectedUrl = "https://home.openweathermap.org/questions";
String oldURL = openBaseURL().getCurrentURL();
String actualURL = new MainPage(getDriver())
.scrollToFooterMenu()
.clickAskQuestionFooterMenu()
.switchToHomeAskQuestionPage()
.getCurrentURL();
String actualTitle = new HomeAskQuestionPage(getDriver()).getTitle();
Assert.assertNotEquals(actualURL, oldURL);
Assert.assertEquals(actualURL, expectedUrl);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test
public void testGooglePlayIconNavigatesToGooglePlayWeb() {
final String expectedURL = "https://play.google.com/store/apps/details?id=uk.co.openweather";
final String expectedTitle = "OpenWeather - Apps on Google Play";
String oldURL = openBaseURL().getCurrentURL();
MainPage mainPage = new MainPage(getDriver());
mainPage.scrollToFooterMenu().clickGooglePlayIcon();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), oldURL);
Assert.assertEquals(getExternalPageURL(), expectedURL);
Assert.assertEquals(getExternalPageTitle(), expectedTitle);
}
@Test
public void testCopyrightOnFooterMenu() {
final String expectedCopyright = "© 2012 — 2022 OpenWeather ® All rights reserved";
String actualCopyright = openBaseURL()
.scrollToFooterMenu()
.getCopyright();
Assert.assertEquals(actualCopyright, expectedCopyright);
}
@Test
public void testFacebookIconNavigatesToFacebookWeb() {
final String expectedPartialFacebookURL = "facebook.com";
String oldURL = openBaseURL().getCurrentURL();
MainPage mainPage = new MainPage(getDriver());
mainPage.scrollToFooterMenu()
.clickFacebookIcon();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), oldURL);
Assert.assertTrue(getExternalPageURL().contains(expectedPartialFacebookURL),
" ExternalPageURL does not contain'facebook.com' " + getExternalPageURL());
}
@Test
public void testOpenWeatherForBusinessLinkNavigateToForBusinessWeb() {
final String expectedURL = "https://openweather.co.uk/";
final String expectedTitle = "OpenWeather for business - OpenWeatherMap";
MainPage mainPage = new MainPage(getDriver());
String urlOfMainPage = openBaseURL().getCurrentURL();
mainPage.scrollToPageBottom()
.clickOpenWeatherForBusinessFooterMenuLink();
mainPage.switchToExternalPage();
TestUtils.waitForPageLoaded(getDriver());
Assert.assertNotEquals(getExternalPageURL(), urlOfMainPage);
Assert.assertEquals(getExternalPageTitle(), expectedTitle);
Assert.assertEquals(getExternalPageURL(), expectedURL);
}
@Test(priority = -5)
public void testFooterMenuLinksAmount() {
final int expectedLinks = 27;
int actualLinks = openBaseURL()
.scrollToFooterMenu()
.getFooterMenuLinksCount();
Assert.assertEquals(actualLinks, expectedLinks);
}
@Test(dataProvider = "FooterMenuData", dataProviderClass = TestData.class)
public void testFooterMenuLinksNavigateToCorrespondingPages(
int index, String linkName, String href, String expectedURL, String expectedTitle) {
MainPage mainPage = openBaseURL();
final String oldURL = mainPage.getCurrentURL();
final String oldTitle = mainPage.getTitle();
String actualURL = mainPage.scrollToFooterMenu().clickFooterMenu(index).getCurrentURL();
String actualTitle = getDriver().getTitle();
Assert.assertNotEquals(oldURL, actualURL);
Assert.assertNotEquals(oldTitle, actualTitle);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
@Test(dataProvider = "ExternalFooterMenuData", dataProviderClass = TestData.class)
public void testExternalMenuLinksNavigateToCorrespondingPages(
int index, String linkName, String href, String expectedURL, String expectedTitle) {
MainPage mainPage = openBaseURL();
final String oldURL = mainPage.getCurrentURL();
final String oldTitle = mainPage.getTitle();
mainPage.scrollToFooterMenu().clickFooterMenuExternalLink(index);
String actualURL = getExternalPageURL();
String actualTitle = getExternalPageTitle();
Assert.assertNotEquals(oldURL, actualURL);
Assert.assertNotEquals(oldTitle, actualTitle);
Assert.assertEquals(actualURL, expectedURL);
Assert.assertEquals(actualTitle, expectedTitle);
}
}