1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.travelview;
17
18 import edu.samplu.common.UpgradedSeleniumITBase;
19 import org.junit.Test;
20
21 import static org.junit.Assert.*;
22
23
24
25
26 public class MaintenanceDisclosuresIT extends UpgradedSeleniumITBase{
27 @Override
28 public String getTestUrl() {
29 return PORTAL;
30 }
31
32 @Test
33
34
35
36 public void testVerifyDisclosures() throws Exception {
37 selenium.click("link=KRAD");
38 selenium.waitForPageToLoad("50000");
39 selenium.click("link=Travel Account Maintenance (New)");
40 selenium.waitForPageToLoad("100000");
41 selenium.selectFrame("iframeportlet");
42
43 assertTrue(selenium.isElementPresent("css=#u93_exp"));
44 assertTrue(selenium.isElementPresent("css=#u779_exp"));
45 assertTrue(selenium.isElementPresent("css=#u955_exp"));
46 assertTrue(selenium.isElementPresent("css=#u168_col"));
47 assertTrue(selenium.isElementPresent("css=#u416_col"));
48 assertTrue(selenium.isElementPresent("css=#u755_col"));
49 selenium.click("id=u93_exp");
50
51 for (int second = 0;; second++) {
52 if (second >= 15) {
53 fail("timeout");
54 }
55
56 if (!selenium.isVisible("css=#u116_label")) {
57 break;
58 }
59
60 Thread.sleep(1000);
61 }
62
63 selenium.click("id=u93_col");
64
65 for (int second = 0;; second++) {
66 if (second >= 15) {
67 fail("timeout");
68 }
69
70 if (selenium.isVisible("css=#u116_label")) {
71 break;
72 }
73
74 Thread.sleep(1000);
75 }
76
77 selenium.click("id=u779_exp");
78
79 for (int second = 0;; second++) {
80 if (second >= 15) {
81 fail("timeout");
82 }
83
84 if (!selenium.isVisible("css=#u802_label")) {
85 break;
86 }
87
88 Thread.sleep(1000);
89 }
90
91 selenium.click("id=u779_col");
92
93 for (int second = 0;; second++) {
94 if (second >= 15) {
95 fail("timeout");
96 }
97
98 if (selenium.isVisible("css=#u802_label")) {
99 break;
100 }
101
102 Thread.sleep(1000);
103 }
104
105 selenium.click("css=#u955_toggle > span.uif-headerText-span");
106
107 for (int second = 0;; second++) {
108 if (second >= 15) {
109 fail("timeout");
110 }
111
112 if (!selenium.isVisible("css=h4.uif-headerText > span.uif-headerText-span")) {
113 break;
114 }
115
116 Thread.sleep(1000);
117 }
118
119 selenium.click("css=#u955_toggle > span.uif-headerText-span");
120
121 for (int second = 0;; second++) {
122 if (second >= 15) {
123 fail("timeout");
124 }
125
126 if (selenium.isVisible("css=h4.uif-headerText > span.uif-headerText-span")) {
127 break;
128 }
129
130 Thread.sleep(1000);
131 }
132
133 selenium.click("css=#u168_toggle > span.uif-headerText-span");
134
135 for (int second = 0;; second++) {
136 if (second >= 15) {
137 fail("timeout");
138 }
139
140 if (selenium.isVisible("css=#u221_add")) {
141 break;
142 }
143
144 Thread.sleep(1000);
145 }
146
147 selenium.click("css=#u168_toggle > span.uif-headerText-span");
148
149 for (int second = 0;; second++) {
150 if (second >= 15) {
151 fail("timeout");
152 }
153
154 if (!selenium.isVisible("css=#u221_add")) {
155 break;
156 }
157
158 Thread.sleep(1000);
159 }
160
161 selenium.click("css=#u416_toggle > span.uif-headerText-span");
162
163 for (int second = 0;; second++) {
164 if (second >= 15) {
165 fail("timeout");
166 }
167
168 if (selenium.isVisible("css=#u440 > h4.uif-headerText > span.uif-headerText-span")) {
169 break;
170 }
171
172 Thread.sleep(1000);
173 }
174
175 selenium.click("css=#u416_toggle > span.uif-headerText-span");
176
177 for (int second = 0;; second++) {
178 if (second >= 15) {
179 fail("timeout");
180 }
181
182 if (!selenium.isVisible("css=#u440 > h4.uif-headerText > span.uif-headerText-span")) {
183 break;
184 }
185
186 Thread.sleep(1000);
187 }
188
189 selenium.click("css=#u755_toggle > span.uif-headerText-span");
190
191 for (int second = 0;; second++) {
192 if (second >= 15) {
193 fail("timeout");
194 }
195
196 if (selenium.isVisible("id=routeLogIFrame")) {
197 break;
198 }
199
200 Thread.sleep(1000);
201 }
202
203 selenium.click("css=#u755_toggle > span.uif-headerText-span");
204
205 for (int second = 0;; second++) {
206 if (second >= 15) {
207 fail("timeout");
208 }
209
210 if (!selenium.isVisible("id=routeLogIFrame")) {
211 break;
212 }
213
214 Thread.sleep(1000);
215 }
216 }
217 }