1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertTrue;
20
21 import org.junit.After;
22 import org.junit.Before;
23 import org.junit.Test;
24
25 import com.thoughtworks.selenium.DefaultSelenium;
26 import com.thoughtworks.selenium.Selenium;
27
28
29
30
31
32
33
34 public class LocationStateIT {
35 private Selenium selenium;
36 @Before
37 public void setUp() throws Exception {
38 selenium = new DefaultSelenium("localhost", 4444, "*firefox", System.getProperty("remote.public.url"));
39 selenium.start();
40 }
41
42 @Test
43
44
45
46 public void testCreateNew() throws Exception {
47 selenium.open(System.getProperty("remote.public.url"));
48 assertEquals("Login", selenium.getTitle());
49 selenium.type("__login_user", "admin");
50 selenium.click("//input[@value='Login']");
51 selenium.waitForPageToLoad("30000");
52 assertEquals("Kuali Portal Index", selenium.getTitle());
53 selenium.click("link=Administration");
54 selenium.waitForPageToLoad("30000");
55 assertEquals("Kuali Portal Index", selenium.getTitle());
56 selenium.click("link=State");
57 selenium.waitForPageToLoad("30000");
58 assertEquals("Kuali Portal Index", selenium.getTitle());
59 selenium.selectFrame("iframeportlet");
60 selenium.click("//img[@alt='create new']");
61 selenium.selectFrame("relative=up");
62 selenium.waitForPageToLoad("30000");
63 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
64 selenium.click("methodToCall.cancel");
65 selenium.waitForPageToLoad("30000");
66 selenium.click("methodToCall.processAnswer.button0");
67 selenium.waitForPageToLoad("30000");
68 }
69
70 @Test
71
72
73
74 public void testEditState() throws Exception {
75 selenium.open(System.getProperty("remote.public.url"));
76 assertEquals("Login", selenium.getTitle());
77 selenium.type("__login_user", "admin");
78 selenium.click("//input[@value='Login']");
79 selenium.waitForPageToLoad("30000");
80 assertEquals("Kuali Portal Index", selenium.getTitle());
81 selenium.click("link=Administration");
82 selenium.waitForPageToLoad("30000");
83 assertEquals("Kuali Portal Index", selenium.getTitle());
84 selenium.click("link=State");
85 selenium.waitForPageToLoad("30000");
86 assertEquals("Kuali Portal Index", selenium.getTitle());
87 selenium.selectFrame("iframeportlet");
88 selenium.click("//input[@name='methodToCall.search' and @value='search']");
89 selenium.waitForPageToLoad("30000");
90 selenium.click("link=edit");
91 selenium.waitForPageToLoad("30000");
92 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
93 selenium.click("methodToCall.cancel");
94 selenium.waitForPageToLoad("30000");
95 selenium.click("methodToCall.processAnswer.button0");
96 selenium.waitForPageToLoad("30000");
97 }
98
99 @After
100 public void tearDown() throws Exception {
101 selenium.stop();
102 }
103 }