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 edu.samplu.common.UpgradedSeleniumITBase;
22 import org.junit.Test;
23
24
25
26
27
28
29 public class LocationStateBlanketAppIT extends UpgradedSeleniumITBase {
30 @Override
31 public String getTestUrl() {
32 return PORTAL;
33 }
34
35 @Test
36 public void testState() throws Exception {
37 assertEquals("Kuali Portal Index", selenium.getTitle());
38 selenium.click("link=Administration");
39 selenium.waitForPageToLoad("30000");
40 assertEquals("Kuali Portal Index", selenium.getTitle());
41 selenium.click("link=State");
42 selenium.waitForPageToLoad("30000");
43 assertEquals("Kuali Portal Index", selenium.getTitle());
44 selenium.selectFrame("iframeportlet");
45 selenium.click("//img[@alt='create new']");
46 selenium.waitForPageToLoad("30000");
47 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
48 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
49 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test State");
50 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.country.CountryBo!!).(((code:document.newMaintainableObject.countryCode,))).((`document.newMaintainableObject.countryCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + System.getProperty("remote.public.url") + "/kr/lookup.do;::::).anchor4");
51 selenium.waitForPageToLoad("30000");
52 selenium.click("//input[@name='methodToCall.search' and @value='search']");
53 selenium.waitForPageToLoad("30000");
54 selenium.click("link=return value");
55 selenium.waitForPageToLoad("30000");
56 selenium.type("//input[@id='document.newMaintainableObject.code']", "TS");
57 selenium.type("//input[@id='document.newMaintainableObject.name']", "Validation Test State");
58 selenium.click("//input[@id='document.newMaintainableObject.active']");
59 selenium.click("methodToCall.blanketApprove");
60 selenium.waitForPageToLoad("30000");
61 selenium.selectWindow("null");
62 selenium.click("//img[@alt='doc search']");
63 selenium.waitForPageToLoad("30000");
64 assertEquals("Kuali Portal Index", selenium.getTitle());
65 selenium.selectFrame("iframeportlet");
66 selenium.click("//input[@name='methodToCall.search' and @value='search']");
67 selenium.waitForPageToLoad("30000");
68
69 docId= "link=" + docId;
70 assertTrue(selenium.isElementPresent(docId));
71 if(selenium.isElementPresent(docId)){
72 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
73 }else{
74 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
75 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
76 }
77 }
78 }