1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.common;
18
19 import org.junit.After;
20 import org.junit.AfterClass;
21 import org.junit.Before;
22 import org.junit.BeforeClass;
23 import org.openqa.selenium.By;
24 import org.openqa.selenium.WebDriver;
25 import org.openqa.selenium.chrome.ChromeDriver;
26 import org.openqa.selenium.chrome.ChromeDriverService;
27 import org.openqa.selenium.firefox.FirefoxDriver;
28 import org.openqa.selenium.firefox.FirefoxProfile;
29
30 import java.io.File;
31 import java.util.concurrent.TimeUnit;
32
33 import static org.junit.Assert.assertEquals;
34
35
36
37
38
39
40 public abstract class WebDriverITBase {
41
42 int DEFAULT_IMPLICIT_WAIT_TIME = 30;
43 int SHORT_IMPLICIT_WAIT_TIME = 1;
44
45 public WebDriver driver;
46 static ChromeDriverService chromeDriverService;
47
48
49
50
51
52
53 public abstract String getTestUrl();
54
55 @BeforeClass
56 public static void createAndStartService() throws Exception {
57 String driverParam = System.getProperty("remote.public.driver");
58 if (driverParam != null && "chrome".equals(driverParam.toLowerCase())) {
59 if (System.getProperty("webdriver.chrome.driver") == null) {
60 if (System.getProperty("remote.public.chrome") != null) {
61 System.setProperty("webdriver.chrome.driver", System.getProperty("remote.public.chrome"));
62 }
63 }
64 ChromeDriverService chromeDriverService = new ChromeDriverService.Builder()
65 .usingChromeDriverExecutable(new File(System.getProperty("remote.public.chrome")))
66 .usingAnyFreePort()
67 .build();
68 chromeDriverService.start();
69 }
70 }
71
72
73
74
75
76
77
78 @Before
79 public void setUp() throws Exception {
80 driver = getWebDriver();
81 driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
82
83
84 driver.get(getBaseUrlString() + getTestUrl());
85 driver.findElement(By.name("__login_user")).clear();
86 driver.findElement(By.name("__login_user")).sendKeys("admin");
87 driver.findElement(By.cssSelector("input[type=\"submit\"]")).click();
88 }
89
90
91
92
93
94
95 @After
96 public void tearDown() throws Exception {
97 if (System.getProperty("remote.driver.dontTearDown") == null ||
98 !"f".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase()) ||
99 !"n".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase())) {
100 driver.quit();
101 }
102 }
103
104
105
106
107
108
109 @AfterClass
110 public static void stopService() throws Exception {
111 if (chromeDriverService != null) {
112 chromeDriverService.stop();
113 }
114 }
115
116
117
118
119
120
121
122
123
124
125
126 public boolean isElementPresent(By by) {
127 if (driver.findElements(by).isEmpty()) {
128 return false;
129 } else {
130 return true;
131 }
132 }
133
134
135
136
137
138
139
140
141
142
143
144
145 public boolean isElementPresentQuick(By by) {
146 driver.manage().timeouts().implicitlyWait(SHORT_IMPLICIT_WAIT_TIME, TimeUnit.SECONDS);
147 boolean result = isElementPresent(by);
148 driver.manage().timeouts().implicitlyWait(DEFAULT_IMPLICIT_WAIT_TIME, TimeUnit.SECONDS);
149 return result;
150 }
151
152
153
154
155
156
157
158
159 public void assertPopUpWindowUrl(By by, String windowName, String url) {
160 driver.findElement(by).click();
161 String parentWindowHandle = driver.getWindowHandle();
162
163 driver.switchTo().window(windowName).findElements(By.tagName("head"));
164 assertEquals(url, driver.getCurrentUrl());
165 driver.switchTo().window(parentWindowHandle);
166 }
167
168 public static String getBaseUrlString() {
169 String baseUrl = System.getProperty("remote.public.url");
170 if (baseUrl == null) {
171 baseUrl = "http://localhost:8080";
172 } else if (baseUrl.endsWith("/")) {
173 baseUrl = baseUrl.substring(0, baseUrl.length() - 1);
174 } else if (!baseUrl.startsWith("http")) {
175 baseUrl = "http://" + baseUrl;
176 }
177 return baseUrl;
178 }
179
180 public WebDriver getWebDriver() {
181 String driverParam = System.getProperty("remote.public.driver");
182 if (driverParam == null || "firefox".equalsIgnoreCase(driverParam)) {
183 FirefoxProfile profile = new FirefoxProfile();
184 profile.setEnableNativeEvents(false);
185 return new FirefoxDriver(profile);
186 } else if ("chrome".equalsIgnoreCase(driverParam)) {
187 return new ChromeDriver();
188 }
189 return null;
190 }
191 }
192