1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.krad.compview;
18
19 import edu.samplu.common.UpgradedSeleniumITBase;
20 import org.junit.Test;
21 import static org.junit.Assert.assertNotSame;
22 import static org.junit.Assert.fail;
23
24
25
26
27
28
29 public class DeleteSubCollectionLineIT extends UpgradedSeleniumITBase{
30 @Override
31 public String getTestUrl() {
32 return PORTAL;
33 }
34
35 @Test
36
37
38
39 public void deleteSubCollectionLine() throws Exception {
40 selenium.click("link=KRAD");
41 selenium.waitForPageToLoad("30000");
42 selenium.click("link=Uif Components (Kitchen Sink)");
43 selenium.waitForPageToLoad("30000");
44
45
46 selenium.click("id=u961");
47
48
49 for (int second = 0;; second++) {
50 if (second >= 60) fail("timeout");
51 try { if (selenium.isElementPresent("id=u1089_line0_line0_control")) break; } catch (Exception e) {}
52 Thread.sleep(1000);
53 }
54
55 selenium.type("id=u1089_line0_line0_control", "selenium");
56
57 selenium.click("id=u1140_line0_line0");
58
59 for (int second = 0;; second++) {
60 if (second >= 60) fail("timeout");
61 try { if (!"selenium".equals(selenium.getValue("id=u1089_line0_line0_control"))) break; } catch (Exception e) {}
62 Thread.sleep(1000);
63 }
64
65 assertNotSame("selenium", selenium.getValue("id=u1089_line0_line0_control"));
66 }
67 }