1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.testtools.selenium;
17
18 import com.thoughtworks.selenium.SeleneseTestBase;
19 import org.apache.commons.lang.StringUtils;
20 import org.apache.commons.lang3.exception.ExceptionUtils;
21 import org.openqa.selenium.Alert;
22 import org.openqa.selenium.By;
23 import org.openqa.selenium.Dimension;
24 import org.openqa.selenium.JavascriptExecutor;
25 import org.openqa.selenium.NoSuchFrameException;
26 import org.openqa.selenium.Proxy;
27 import org.openqa.selenium.WebDriver;
28 import org.openqa.selenium.WebElement;
29 import org.openqa.selenium.chrome.ChromeDriver;
30 import org.openqa.selenium.chrome.ChromeDriverService;
31 import org.openqa.selenium.firefox.FirefoxDriver;
32 import org.openqa.selenium.firefox.FirefoxProfile;
33 import org.openqa.selenium.remote.CapabilityType;
34 import org.openqa.selenium.remote.DesiredCapabilities;
35 import org.openqa.selenium.remote.RemoteWebDriver;
36 import org.openqa.selenium.safari.SafariDriver;
37
38 import java.io.BufferedReader;
39 import java.io.File;
40 import java.io.InputStream;
41 import java.io.InputStreamReader;
42 import java.net.MalformedURLException;
43 import java.net.URL;
44 import java.util.LinkedList;
45 import java.util.List;
46 import java.util.concurrent.TimeUnit;
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 public class WebDriverUtils {
62
63 protected static SauceLabsWebDriverHelper saucelabs;
64
65 public static boolean jGrowlEnabled = false;
66
67 public static boolean jsHighlightEnabled = false;
68
69
70
71
72 public static final String DEFAULT_BASE_URL = "http://localhost:8080/kr-dev";
73
74
75
76
77 public static final String DEFAULT_BASE_URL_KRAD = "http://localhost:8080/krad-dev";
78
79
80
81
82
83
84
85
86 public static final String DONT_TEAR_DOWN_PROPERTY = "remote.driver.dontTearDown";
87
88
89
90
91
92
93
94
95 public static final String DONT_TEAR_DOWN_ON_FAILURE_PROPERTY = "remote.driver.dontTearDownOnFailure";
96
97
98
99
100 public static final String HUB_DRIVER_PROPERTY = "remote.public.driver";
101
102
103
104
105
106 public static final String HUB_PROPERTY = "remote.public.hub";
107
108
109
110
111 public static final String HUB_URL_PROPERTY = "http://localhost:4444/wd/hub";
112
113
114
115
116
117 public static int IMPLICIT_WAIT_TIME_LOOP_MS = 1000;
118
119
120
121
122
123
124
125
126 public static int IMPLICIT_WAIT_TIME_SECONDS_DEFAULT = 30;
127
128
129
130
131
132 public static final boolean JGROWL_ERROR_FAILURE = false;
133
134
135
136
137 public static final String JS_HIGHLIGHT_BACKGROUND = "#66FF33";
138
139
140
141
142 public static final String JS_HIGHLIGHT_BOARDER = "#66FF33";
143
144
145
146
147 public static final int JS_HIGHLIGHT_MS = 400;
148
149
150
151
152
153
154
155
156 public static final String JS_HIGHLIGHT_MS_PROPERTY = "remote.driver.highlight.ms";
157
158
159
160
161
162
163
164
165 public static final String JS_HIGHLIGHT_PROPERTY = "remote.driver.highlight";
166
167
168
169
170
171
172 public static final String JS_HIGHLIGHT_INPUT_PROPERTY = "remote.driver.highlight.input";
173
174
175
176
177
178
179
180
181
182
183 public static final String PROXY_HOST_PROPERTY = "remote.public.proxy";
184
185
186
187
188
189
190
191
192 public static final String REMOTE_AUTOLOGIN_PROPERTY = "remote.autologin";
193
194
195
196
197
198
199
200
201
202
203 public static final String REMOTE_JGROWL_ENABLED = "remote.jgrowl.enabled";
204
205
206
207
208 public static final String REMOTE_LOGIN_UIF = "remote.login.uif";
209
210
211
212
213 public static final String REMOTE_PROPERTIES_PROPERTY = "remote.property.file";
214
215
216
217
218 public static final String REMOTE_PUBLIC_CHROME = "remote.public.chrome";
219
220
221
222
223 public static final String REMOTE_PUBLIC_URL_PROPERTY = "remote.public.url";
224
225
226
227
228
229
230
231
232 public static final String REMOTE_PUBLIC_WAIT_SECONDS_PROPERTY = "remote.public.wait.seconds";
233
234
235
236
237 public static final String REMOTE_PUBLIC_USER_PROPERTY = "remote.public.user";
238
239
240
241
242 public static final String REMOTE_PUBLIC_USERPOOL_PROPERTY = "remote.public.userpool";
243
244
245
246
247
248
249
250
251
252
253 public static final int SETUP_URL_LOAD_WAIT_SECONDS = 120;
254
255
256
257
258 public static final String WEBDRIVER_CHROME_DRIVER = "webdriver.chrome.driver";
259
260
261
262
263
264
265
266
267
268 public static WebDriver setUp(String username, String url) throws Exception {
269 return setUp(username, url, null, null);
270 }
271
272
273
274
275
276
277
278
279
280
281
282 public static WebDriver setUp(String username, String url, String className, String testName) throws Exception {
283 if ("true".equals(System.getProperty(REMOTE_JGROWL_ENABLED, "false"))) {
284 jGrowlEnabled = true;
285 }
286
287 if ("true".equals(System.getProperty(JS_HIGHLIGHT_PROPERTY, "false"))) {
288 jsHighlightEnabled = true;
289 if (System.getProperty(JS_HIGHLIGHT_INPUT_PROPERTY) != null) {
290 InputStream in = WebDriverUtils.class.getResourceAsStream(System.getProperty(JS_HIGHLIGHT_INPUT_PROPERTY));
291 BufferedReader reader = new BufferedReader(new InputStreamReader(in));
292 String line = null;
293 List<String> lines = new LinkedList<String>();
294 while ((line = reader.readLine()) != null) {
295 lines.add(line);
296 }
297 }
298 }
299
300 WebDriver driver = null;
301 if (System.getProperty(SauceLabsWebDriverHelper.REMOTE_DRIVER_SAUCELABS_PROPERTY) == null) {
302 driver = getWebDriver();
303 } else {
304 saucelabs = new SauceLabsWebDriverHelper();
305 saucelabs.setUp(className, testName);
306 driver = saucelabs.getDriver();
307 }
308
309 driver.manage().timeouts().implicitlyWait(SETUP_URL_LOAD_WAIT_SECONDS, TimeUnit.SECONDS);
310
311 if (!System.getProperty(SauceLabsWebDriverHelper.SAUCE_BROWSER_PROPERTY,"ff").equals("opera")) {
312 driver.manage().window().maximize();
313
314 }
315
316
317
318 if (!url.startsWith("http")) {
319 url = getBaseUrlString() + url;
320 }
321
322 driver.get(url);
323 driver.manage().timeouts().implicitlyWait(configuredImplicityWait(), TimeUnit.SECONDS);
324 return driver;
325 }
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341 public static void tearDown(boolean passed, String sessionId, String poolParamTest, String poolParamUser, String className, String testName) throws Exception {
342
343 if (passed) {
344 System.out.println("Registering session passed " + sessionId);
345 } else {
346 System.out.println("Registering session failed " + sessionId);
347 }
348
349 if (System.getProperty(SauceLabsWebDriverHelper.REMOTE_DRIVER_SAUCELABS_PROPERTY) != null) {
350 saucelabs.tearDown(passed, sessionId, className, testName);
351 }
352
353 if (System.getProperty(REMOTE_PUBLIC_USERPOOL_PROPERTY) != null) {
354 AutomatedFunctionalTestUtils.getHTML(AutomatedFunctionalTestUtils.prettyHttp(System.getProperty(
355 REMOTE_PUBLIC_USERPOOL_PROPERTY) + "?test=" + poolParamTest + "&user=" + poolParamUser));
356 }
357 }
358
359
360
361
362
363
364
365
366 public static void acceptAlertIfPresent(WebDriver driver) {
367 if (WebDriverUtils.isAlertPresent(driver)) {
368 System.out.println("Alert present " + WebDriverUtils.alertText(driver));
369 alertAccept(driver);
370 }
371 }
372
373
374
375
376
377
378
379
380 public static void alertAccept(WebDriver driver) {
381 Alert alert = driver.switchTo().alert();
382 jGrowl(driver, "AFT Step", false, "AFT Step: Accept Alert " + WebDriverUtils.alertText(driver));
383 alert.accept();
384 }
385
386
387
388
389
390
391
392
393 public static void alertDismiss(WebDriver driver) {
394 Alert alert = driver.switchTo().alert();
395 jGrowl(driver, "AFT Step", false, "AFT Step: Dismiss Alert " + WebDriverUtils.alertText(driver));
396 alert.dismiss();
397 }
398
399
400
401
402
403
404
405
406
407 public static String alertText(WebDriver driver) {
408 return driver.switchTo().alert().getText();
409 }
410
411
412
413
414
415
416
417
418
419 public static ChromeDriverService chromeDriverCreateCheck() {
420 String driverParam = System.getProperty(HUB_DRIVER_PROPERTY);
421
422 if (driverParam != null && "chrome".equals(driverParam.toLowerCase())) {
423 if (System.getProperty(WEBDRIVER_CHROME_DRIVER) == null) {
424 if (System.getProperty(REMOTE_PUBLIC_CHROME) != null) {
425 System.setProperty(WEBDRIVER_CHROME_DRIVER, System.getProperty(REMOTE_PUBLIC_CHROME));
426 }
427 }
428 try {
429 ChromeDriverService chromeDriverService = new ChromeDriverService.Builder()
430 .usingDriverExecutable(new File(System.getProperty(WEBDRIVER_CHROME_DRIVER)))
431 .usingAnyFreePort()
432 .build();
433 return chromeDriverService;
434 } catch (Throwable t) {
435 throw new RuntimeException("Exception starting chrome driver service, is chromedriver ( http://code.google.com/p/chromedriver/downloads/list ) installed? You can include the path to it using -Dremote.public.chrome", t) ;
436 }
437 }
438 return null;
439 }
440
441
442
443
444
445
446
447
448 public static int configuredImplicityWait() {
449 return Integer.parseInt(System.getProperty(REMOTE_PUBLIC_WAIT_SECONDS_PROPERTY, IMPLICIT_WAIT_TIME_SECONDS_DEFAULT + ""));
450 }
451
452
453
454
455
456
457
458
459
460 public static String deLinespace(String contents) {
461 while (contents.contains("\n\n")) {
462 contents = contents.replaceAll("\n\n", "\n");
463 }
464
465 return contents;
466 }
467
468
469
470
471
472
473
474
475
476
477 public static String determineUser(String testParam) {
478 String user = null;
479
480 if (System.getProperty(REMOTE_PUBLIC_USER_PROPERTY) != null) {
481 return System.getProperty(REMOTE_PUBLIC_USER_PROPERTY);
482 } else if (System.getProperty(REMOTE_PUBLIC_USERPOOL_PROPERTY) != null) {
483 String userResponse = AutomatedFunctionalTestUtils.getHTML(AutomatedFunctionalTestUtils.prettyHttp(
484 System.getProperty(REMOTE_PUBLIC_USERPOOL_PROPERTY) + "?test=" + testParam.trim()));
485 return userResponse.substring(userResponse.lastIndexOf(":") + 2, userResponse.lastIndexOf("\""));
486 }
487
488 return user;
489 }
490
491
492
493
494
495
496
497
498
499
500
501
502 public static boolean dontTearDownPropertyNotSet() {
503 return System.getProperty(DONT_TEAR_DOWN_PROPERTY) == null ||
504 "f".startsWith(System.getProperty(DONT_TEAR_DOWN_PROPERTY).toLowerCase()) ||
505 "n".startsWith(System.getProperty(DONT_TEAR_DOWN_PROPERTY).toLowerCase());
506 }
507
508
509
510
511
512
513
514
515 public static boolean dontTearDownOnFailure(boolean passed) {
516 if (!"n".equalsIgnoreCase(System.getProperty(DONT_TEAR_DOWN_ON_FAILURE_PROPERTY, "n"))) {
517 return passed;
518 }
519 return true;
520 }
521
522
523
524
525
526
527
528
529
530
531 public static WebElement findButtonByText(WebDriver driver, String buttonText) {
532 return findElement(driver, By.xpath("//button[contains(text(), '" + buttonText + "')]"));
533 }
534
535
536
537
538
539
540
541
542
543
544 public static WebElement findElement(WebDriver driver, By by) {
545 WebElement found = driver.findElement(by);
546 WebDriverUtils.highlightElement(driver, found);
547 return found;
548 }
549
550
551
552
553
554
555
556
557
558
559 public static String getBaseUrlString() {
560 String baseUrl = System.getProperty(REMOTE_PUBLIC_URL_PROPERTY);
561 if (baseUrl == null) {
562 baseUrl = DEFAULT_BASE_URL;
563 }
564 baseUrl = AutomatedFunctionalTestUtils.prettyHttp(baseUrl);
565 return baseUrl;
566 }
567
568
569
570
571
572
573
574
575
576
577
578 public static WebElement getElementByAttributeValue(WebDriver driver, String attributeName, String value){
579 return findElement(driver, By.cssSelector("[" + attributeName + "='" + value +"']"));
580 }
581
582
583
584
585
586
587
588
589
590
591 public static String getHubUrlString() {
592 String hubUrl = System.getProperty(HUB_PROPERTY);
593 if (hubUrl == null) {
594 hubUrl = HUB_URL_PROPERTY;
595 }
596 hubUrl = AutomatedFunctionalTestUtils.prettyHttp(hubUrl);
597 if (!hubUrl.endsWith("/wd/hub")) {
598 hubUrl = hubUrl + "/wd/hub";
599 }
600 return hubUrl;
601 }
602
603
604
605
606
607
608
609
610
611
612
613 public static WebDriver getWebDriver() {
614 String driverParam = System.getProperty(HUB_DRIVER_PROPERTY);
615 String hubParam = System.getProperty(HUB_PROPERTY);
616 String proxyParam = System.getProperty(PROXY_HOST_PROPERTY);
617
618
619 DesiredCapabilities capabilities = new DesiredCapabilities();
620 WebDriver webDriver = null;
621 if (StringUtils.isNotEmpty(proxyParam)) {
622 capabilities.setCapability(CapabilityType.PROXY, new Proxy().setHttpProxy(proxyParam));
623 }
624
625 if (hubParam == null) {
626 if (driverParam == null || "firefox".equalsIgnoreCase(driverParam)) {
627 FirefoxProfile profile = new FirefoxProfile();
628 profile.setEnableNativeEvents(false);
629 capabilities.setCapability(FirefoxDriver.PROFILE, profile);
630 return new FirefoxDriver(capabilities);
631 } else if ("chrome".equalsIgnoreCase(driverParam)) {
632 return new ChromeDriver(capabilities);
633 } else if ("safari".equals(driverParam)) {
634 System.out.println("SafariDriver probably won't work, if it does please contact Erik M.");
635 return new SafariDriver(capabilities);
636 }
637 } else {
638 try {
639 if (driverParam == null || "firefox".equalsIgnoreCase(driverParam)) {
640 return new RemoteWebDriver(new URL(getHubUrlString()), DesiredCapabilities.firefox());
641 } else if ("chrome".equalsIgnoreCase(driverParam)) {
642 return new RemoteWebDriver(new URL(getHubUrlString()), DesiredCapabilities.chrome());
643 }
644 } catch (MalformedURLException mue) {
645 System.out.println(getHubUrlString() + " " + mue.getMessage());
646 mue.printStackTrace();
647 }
648 }
649 return null;
650 }
651
652 public static void highlightElement(WebDriver webDriver, By by) {
653 List<WebElement> elements = webDriver.findElements(by);
654 for (WebElement element : elements) {
655 WebDriverUtils.highlightElement(webDriver, element);
656 }
657 }
658
659
660 public static void highlightElements(WebDriver webDriver, List<WebElement> webElements) {
661 for (WebElement webElement: webElements) {
662 highlightElement(webDriver, webElement);
663 }
664 }
665
666
667
668
669
670
671
672
673
674 public static void highlightElement(WebDriver webDriver, WebElement webElement) {
675 if (jsHighlightEnabled && webElement != null) {
676 try {
677
678 JavascriptExecutor js = (JavascriptExecutor) webDriver;
679 String jsHighlight = "element = arguments[0];\n"
680 + "originalStyle = element.getAttribute('style');\n"
681 + "element.setAttribute('style', originalStyle + \"; background: "
682 + JS_HIGHLIGHT_BACKGROUND + "; border: 2px solid " + JS_HIGHLIGHT_BOARDER + ";\");\n"
683 + "setTimeout(function(){\n"
684 + " element.setAttribute('style', originalStyle);\n"
685 + "}, " + System.getProperty(JS_HIGHLIGHT_MS_PROPERTY, JS_HIGHLIGHT_MS + "") + ");";
686 js.executeScript(jsHighlight, webElement);
687 } catch (Throwable t) {
688 System.out.println("Throwable during javascript highlight element");
689 t.printStackTrace();
690 }
691 }
692 }
693
694
695
696
697
698
699
700
701
702 public static boolean isAlertPresent(WebDriver driver) {
703 try {
704 driver.switchTo().alert();
705 return true;
706 } catch (Exception e) {
707 return false;
708 }
709 }
710
711 public static Boolean isTextPresent(WebDriver driver, String pageText, String text) {
712 boolean textPresent = Boolean.FALSE;
713 if (pageText.contains(text)) {
714 WebDriverUtils.highlightElement(driver, By.xpath("//*[contains(text(), '" + text + "')]"));
715 textPresent = Boolean.TRUE;
716 }
717 WebDriverUtils.jGrowl(driver, "Is Text Present?", false, "Is text '" + text + " present?" + " " + textPresent);
718 return textPresent;
719 }
720
721
722
723
724
725
726
727
728
729
730
731
732 public static void jGrowl(WebDriver driver, String jGrowlHeader, boolean sticky, String message, Throwable throwable) {
733 if (jGrowlEnabled) {
734 jGrowl(driver, jGrowlHeader, sticky, message + " " + throwable.getMessage() + "\n" + ExceptionUtils.getStackTrace(throwable));
735 }
736 }
737
738
739
740
741
742
743
744
745
746
747
748 public static void jGrowl(WebDriver driver, String jGrowlHeader, boolean sticky, String message) {
749 stepMessage(message);
750 if (jGrowlEnabled) {
751 try {
752 String javascript="jQuery.jGrowl('" + message + "' , {sticky: " + sticky + ", header : '" + jGrowlHeader + "'});";
753 ((JavascriptExecutor) driver).executeScript(javascript);
754 } catch (Throwable t) {
755 jGrowlException(t);
756 }
757 }
758 }
759
760
761
762
763
764
765
766
767 public static void jGrowlException(Throwable throwable) {
768 String failMessage = throwable.getMessage() + "\n" + ExceptionUtils.getStackTrace(throwable);
769 System.out.println("jGrowl failure " + failMessage);
770 if (JGROWL_ERROR_FAILURE) {
771 SeleneseTestBase.fail(failMessage);
772 }
773 }
774
775
776
777
778
779
780
781
782
783 public static void selectFrameSafe(WebDriver driver, String locator) {
784 try {
785 driver.switchTo().frame(locator);
786 } catch (NoSuchFrameException nsfe) {
787
788 }
789 }
790
791 public static void stepMessage(String message) {
792 System.out.println("AFT Step: " + message);
793 }
794
795
796
797
798
799
800
801
802
803
804
805
806
807 public static WebElement waitAndGetElementByAttributeValue(WebDriver driver, String attribute, String attributeValue, int waitSeconds) throws InterruptedException {
808
809
810
811
812 driver.manage().timeouts().implicitlyWait(1, TimeUnit.SECONDS);
813
814 boolean failed = false;
815
816 for (int second = 0;; second++) {
817 Thread.sleep(1000);
818 if (second >= waitSeconds) {
819 failed = true;
820 }
821 try {
822 if (failed || (getElementByAttributeValue(driver, attribute, attributeValue) != null)) {
823 break;
824 }
825 } catch (Exception e) {}
826 }
827
828 WebElement element = getElementByAttributeValue(driver, attribute, attributeValue);
829 driver.manage().timeouts().implicitlyWait(WebDriverUtils.configuredImplicityWait(), TimeUnit.SECONDS);
830 return element;
831 }
832
833 public static void waitToAcceptAlert(WebDriver driver, int waitSeconds, String message) throws InterruptedException {
834 driver.manage().timeouts().implicitlyWait(IMPLICIT_WAIT_TIME_LOOP_MS, TimeUnit.MILLISECONDS);
835
836 boolean failed = false;
837
838 for (int second = 0;; second++) {
839 Thread.sleep(1000);
840 if (second >= waitSeconds) {
841 failed = true;
842 }
843 try {
844 if (failed) {
845 break;
846 } else if (isAlertPresent(driver)) {
847 acceptAlertIfPresent(driver);
848 break;
849 }
850 } catch (Exception e) {}
851 }
852
853 driver.manage().timeouts().implicitlyWait(configuredImplicityWait(), TimeUnit.SECONDS);
854 }
855
856
857
858
859
860
861
862
863
864
865
866
867
868 public static WebElement waitFor(WebDriver driver, int waitSeconds, By by, String message) throws InterruptedException {
869
870
871
872
873 driver.manage().timeouts().implicitlyWait(IMPLICIT_WAIT_TIME_LOOP_MS, TimeUnit.MILLISECONDS);
874
875 boolean failed = false;
876 WebElement element = null;
877
878 for (int second = 0;; second++) {
879 Thread.sleep(1000);
880 if (second >= waitSeconds) {
881 failed = true;
882 }
883 try {
884 if (failed) {
885 break;
886 } else if ((driver.findElements(by)).size() > 0) {
887 element = findElement(driver, by);
888 highlightElement(driver, element);
889 break;
890 }
891 } catch (Exception e) {}
892 }
893
894 driver.manage().timeouts().implicitlyWait(configuredImplicityWait(), TimeUnit.SECONDS);
895 return element;
896 }
897
898
899
900
901
902
903
904
905
906
907
908 public static List<WebElement> waitFors(WebDriver driver, By by) throws InterruptedException {
909 return waitFors(driver, configuredImplicityWait(), by, "");
910 }
911
912
913
914
915
916
917
918
919
920
921
922
923 public static List<WebElement> waitFors(WebDriver driver, By by, String message) throws InterruptedException {
924 return waitFors(driver, configuredImplicityWait(), by, message);
925 }
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940 public static List<WebElement> waitFors(WebDriver driver, int waitSeconds, By by, String message) throws InterruptedException {
941
942
943
944
945 driver.manage().timeouts().implicitlyWait(IMPLICIT_WAIT_TIME_LOOP_MS, TimeUnit.MILLISECONDS);
946
947 boolean failed = false;
948
949 for (int second = 0;; second++) {
950 Thread.sleep(1000);
951 if (second >= waitSeconds) {
952 failed = true;
953 }
954 try {
955 if (failed || (driver.findElements(by)).size() > 0) {
956 break;
957 }
958 } catch (Exception e) {}
959 }
960
961 driver.manage().timeouts().implicitlyWait(configuredImplicityWait(), TimeUnit.SECONDS);
962 return driver.findElements(by);
963 }
964 }