1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.admin.test;
18
19 import edu.samplu.common.UpgradedSeleniumITBase;
20 import org.junit.Test;
21
22 import static org.junit.Assert.fail;
23
24
25
26
27
28 public class AgendaEditRuleRefreshIT extends UpgradedSeleniumITBase {
29 @Override
30 public String getTestUrl() {
31 return PORTAL;
32 }
33
34 @Test
35
36
37
38 public void testAgendaEditRuleRefreshIT() throws Exception {
39 selenium.click("link=Agenda Lookup");
40 selenium.waitForPageToLoad("30000");
41 selenium.selectFrame("iframeportlet");
42 selenium.click("css=button:contains(earch)");
43 Thread.sleep(3000);
44 selenium.waitForPageToLoad("30000");
45 selenium.click("css=a[title='edit Agenda Definition withAgenda Id=T1000 ']");
46 selenium.waitForPageToLoad("30000");
47 selenium.click("css=span:contains(Rule1: stub rule lorem ipsum [KrmsActionResolverType: testAction])");
48 selenium.click("id=472_node_0_parent_node_0_parent_node_0_parent_root_span");
49 selenium.click("id=361");
50
51
52 for (int i=0; i<6; i++) {
53 for (int second = 0;; second++) {
54 if (second >= 60) fail("timeout");
55 try { if (selenium.isElementPresent("id=440")) break; } catch (Exception e) {}
56 Thread.sleep(1000);
57 }
58
59 selenium.click("id=440");
60 }
61 }
62 }