1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.demo.uif.library;
17
18 import org.junit.Test;
19 import org.openqa.selenium.By;
20 import org.openqa.selenium.WebElement;
21
22
23
24
25 public class DemoLibraryWidgetsGrowlSmokeTest extends DemoLibraryBase {
26
27
28
29
30 public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-Growls-View&methodToCall=start";
31
32 @Override
33 protected String getBookmarkUrl() {
34 return BOOKMARK_URL;
35 }
36
37 @Override
38 protected void navigate() throws Exception {
39 navigateToLibraryDemo("Widgets", "Growls");
40 }
41
42 protected void testWidgetsGrowlDefault() throws Exception {
43
44
45 assertTextNotPresent("Sample Message Text. Data passed: none");
46
47
48 waitAndClickButtonByText("Growl");
49
50
51 Thread.sleep(1000);
52
53
54 assertTextPresent("Sample Message Text. Data passed: none");
55 }
56
57 protected void testWidgetsDatePickerWidget() throws Exception {
58 waitAndClickByLinkText(">> Open Library Navigation");
59 waitAndClickByLinkText("Suggest");
60 waitAndClickByLinkText("Tooltip");
61 select(By.id("Demo-LargeExampleDropdown_control"), "Tooltip On Focus");
62
63
64 fireMouseOverEvent(By.id("u100101_label"));
65 Thread.sleep(1000);
66 WebElement tooltipFocusLabel = driver.findElement(By.xpath("//div[@data-for=\"u100101_label\"]")).findElement(
67 By.className("jquerybubblepopup-innerHtml"));
68 if (!tooltipFocusLabel.isDisplayed()) {
69 fail("Tooltip help for label not displayed.");
70 }
71 if (!tooltipFocusLabel.getText().equals("Click on the text box for a tool tip")) {
72 fail("Incorrect inner html text for label focus tooltip.");
73 }
74
75
76 waitAndClickById("u100101_control");
77 Thread.sleep(1000);
78 WebElement tooltipFocusControl = driver.findElement(By.xpath("//div[@data-for=\"u100101_control\"]"))
79 .findElement(By.className("jquerybubblepopup-innerHtml"));
80 if (!tooltipFocusControl.isDisplayed()) {
81 fail("Tooltip help for control not displayed.");
82 }
83 if (!tooltipFocusControl.getText().equals("This tooltip appears when the field receives focus")) {
84 fail("Incorrect inner html text for tooltip focus control.");
85 }
86 }
87
88 @Test
89 public void testWidgetsGrowlBookmark() throws Exception {
90 testWidgetsGrowlDefault();
91 passed();
92 }
93
94 @Test
95 public void testWidgetsGrowlNav() throws Exception {
96 testWidgetsGrowlDefault();
97 passed();
98 }
99 }