1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.krad.configview;
17
18 import org.kuali.rice.testtools.common.JiraAwareFailable;
19 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20
21
22
23
24 public abstract class HelpAftBase extends WebDriverLegacyITBase {
25
26
27
28
29 public static final String BOOKMARK_URL = "/kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView&methodToCall=start&pageId=ConfigurationTestView-Help-Page";
30 public static final String HELP_FOR_CONFIGURATION_TEST_VIEW_XPATH =
31 "//a[@title='Help for Configuration Test View']";
32
33 @Override
34 protected String getBookmarkUrl() {
35 return BOOKMARK_URL;
36 }
37
38 protected void navigation() throws Exception {
39 waitAndClickKRAD();
40 waitAndClickByXpath(CONFIGURATION_VIEW_XPATH);
41 switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
42 waitAndClickByLinkText("Help");
43 Thread.sleep(5000);
44 }
45
46 protected void testHelpNav(JiraAwareFailable failable) throws Exception {
47 navigation();
48 testViewHelp();
49 testPageHelp();
50 testTooltipHelp();
51 testDisplayOnlyTooltipHelp();
52 testMissingTooltipHelp();
53 passed();
54 }
55
56 protected void testHelpBookmark(JiraAwareFailable failable) throws Exception {
57 testViewHelp();
58 testPageHelp();
59 testTooltipHelp();
60 testDisplayOnlyTooltipHelp();
61 testMissingTooltipHelp();
62 passed();
63 }
64
65
66
67
68
69 protected void testPageHelp() throws Exception {
70
71 fireMouseOverEventByXpath("//a/span[@class='uif-headerText-span']");
72 waitForElementPresent("//div[@class='popover top in']");
73
74
75 switchToWindow("Kuali Portal Index");
76 switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
77 }
78
79
80
81
82 protected void testTooltipHelp() throws Exception {
83
84 if (isElementPresentByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]")) {
85 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]"));
86 }
87
88 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label left')]")) {
89 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label left')]"));
90 }
91
92 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label right')]")) {
93 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label right')]"));
94 }
95
96 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label top')]")) {
97 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label top')]"));
98 }
99
100 if (isElementPresentByXpath("//td[contains(text(),'Sample text for standalone help widget tooltip which will never be rendered')]")) {
101 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for standalone help widget tooltip which will never be rendered')]"));
102 }
103
104 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - there is also a tooltip on the label but it is overridden by the help tooltip')]")) {
105 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - there is also a tooltip on the label but it is overridden by the help tooltip')]"));
106 }
107
108 if (isElementPresentByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]")) {
109 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]"));
110 }
111
112 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - there is also an on-focus tooltip')]")) {
113 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - there is also an on-focus tooltip')]"));
114 }
115
116 if (isElementPresentByXpath("//td[contains(text(),'Sample text for on-focus event tooltip')]")) {
117 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for on-focus event tooltip')]"));
118 }
119
120 if (isElementPresentByXpath("//td[contains(text(),'Sample text for check box help')]")) {
121 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for check box help')]"));
122 }
123
124
125 fireMouseOverEventByXpath("//section[@id='ConfigurationTestView-Help-Section1']/header/h3[@class='uif-headerText']");
126 waitForElementPresentByXpath("//div[@class='popover top in']");
127
128
129 assertFalse(isElementPresent("#ConfigurationTestView-Help-Section1 input.uif-helpImage"));
130
131
132 fireMouseOverEventByXpath("//label[@id='field-label-left_label']");
133 waitForElementPresentByXpath("//div[@class='popover top in']");
134
135
136 fireMouseOverEventByXpath("//label[@id='field-label-right_label']");
137 waitForElementPresentByXpath("//div[@class='popover top in']");
138
139
140 fireMouseOverEventByXpath("//label[@id='field-label-top_label']");
141 waitForElementPresentByXpath("//div[@class='popover top in']");
142
143
144 assertFalse(isElementPresentByXpath("//*[@id='standalone-help-not-rendered']"));
145
146
147 fireMouseOverEventByXpath("//label[@id='override-tooltip_label']");
148 waitForElementPresentByXpath("//div[@class='popover top in']");
149 if (isElementPresentByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]")) {
150 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]"));
151 }
152
153
154 fireMouseOverEventByXpath("//input[@id='on-focus-tooltip_control']");
155 waitForElementPresentByXpath("//div[@class='popover top in']");
156 fireMouseOverEventByXpath("//label[@id='on-focus-tooltip_label']");
157 waitForElementPresentByXpath("//div[@class='popover top in']");
158
159
160 fireMouseOverEventByXpath("//label[@id='checkbox_label']");
161 waitForElementPresentByXpath("//div[@class='popover top in']");
162 }
163
164
165
166
167 protected void testDisplayOnlyTooltipHelp() throws Exception {
168
169
170 fireMouseOverEventByXpath("//section[@data-parent='ConfigurationTestView-Help-Section1']/header/h4");
171 waitForElementPresentByXpath("//td[contains(text(),'Sample text for sub-section help')]");
172
173
174 fireMouseOverEventByXpath("//label[@for='display-field_control']");
175 waitForElementPresentByXpath("//td[contains(text(),'Sample text for read only field help')]");
176 }
177
178
179
180
181 protected void testMissingTooltipHelp() throws Exception {
182
183
184 fireMouseOverEventByXpath("//section[@id='ConfigurationTestView-Help-Section2']/div");
185 assertFalse(isElementPresentByXpath("//div[@class='jquerybubblepopup jquerybubblepopup-black' and @style='opacity: 0; top: 627px; left: 2px; position: absolute; display: block;']"));
186
187
188 fireMouseOverEventByXpath("//label[@id='missing-tooltip-help_label']");
189 assertFalse(isElementPresentByXpath("//div[@class='jquerybubblepopup jquerybubblepopup-black' and @style='opacity: 0; top: 627px; left: 2px; position: absolute; display: block;']"));
190 }
191
192
193
194
195 protected void testViewHelp() throws Exception {
196
197 fireEvent("field102", "blur");
198 fireMouseOverEventByXpath("//label[@id='field-label-left_label']");
199 waitForElementPresent("//div[@class='popover top in']");
200
201
202 switchToWindow("Kuali Portal Index");
203 switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
204 }
205 }