1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18
19 import static org.junit.Assert.assertEquals;
20 import static org.junit.Assert.assertTrue;
21
22 import edu.samplu.common.UpgradedSeleniumITBase;
23 import org.junit.After;
24 import org.junit.Before;
25 import org.junit.Test;
26
27 import com.thoughtworks.selenium.DefaultSelenium;
28 import com.thoughtworks.selenium.Selenium;
29
30
31
32
33
34 public class LocationCampusBlanketAppIT extends UpgradedSeleniumITBase {
35 @Override
36 public String getTestUrl() {
37 return PORTAL;
38 }
39
40 @Test
41 public void testCampus() throws Exception {
42 assertEquals("Kuali Portal Index", selenium.getTitle());
43 selenium.click("link=Administration");
44 selenium.waitForPageToLoad("30000");
45 assertEquals("Kuali Portal Index", selenium.getTitle());
46 selenium.click("link=Campus");
47 selenium.waitForPageToLoad("30000");
48 assertEquals("Kuali Portal Index", selenium.getTitle());
49 selenium.selectFrame("iframeportlet");
50 selenium.click("//img[@alt='create new']");
51 selenium.waitForPageToLoad("30000");
52 assertTrue(selenium.isElementPresent("name=methodToCall.cancel"));
53 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
54
55 selenium.type("id=document.documentHeader.documentDescription", "Validation Test Campus");
56 selenium.type("id=document.newMaintainableObject.code", "VC");
57 selenium.type("id=document.newMaintainableObject.name", "Validation Test Campus");
58 selenium.type("id=document.newMaintainableObject.shortName", "VTC");
59 selenium.select("id=document.newMaintainableObject.campusTypeCode", "label=B - BOTH");
60 selenium.click("name=methodToCall.blanketApprove");
61 selenium.waitForPageToLoad("30000");
62 selenium.selectWindow("null");
63 selenium.click("//img[@alt='doc search']");
64 selenium.waitForPageToLoad("30000");
65 assertEquals("Kuali Portal Index", selenium.getTitle());
66 selenium.selectFrame("iframeportlet");
67 selenium.click("//input[@name='methodToCall.search' and @value='search']");
68 selenium.waitForPageToLoad("30000");
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 }
79 }