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 IdentityGroupBlanketAppIT extends UpgradedSeleniumITBase {
30 @Override
31 public String getTestUrl() {
32 return PORTAL;
33 }
34
35 @Test
36 public void createIdentityGroupDoc() 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=Group");
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 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Group");
49 selenium.select("//select[@id='document.groupNamespace']", IdentityResponsibilityBlanketAppIT.LABEL_KUALI_KUALI_SYSTEMS);
50 selenium.waitForPageToLoad("30000");
51 selenium.type("//input[@id='document.groupName']", "Validation Test Group1");
52 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.impl.identity.PersonImpl!!).(((principalId:member.memberId,principalName:member.memberName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchorAssignees");
53 selenium.waitForPageToLoad("30000");
54 selenium.click("//input[@name='methodToCall.search' and @value='search']");
55 selenium.waitForPageToLoad("30000");
56 selenium.click("link=return value");
57 selenium.waitForPageToLoad("30000");
58 selenium.click("methodToCall.addMember.anchorAssignees");
59 selenium.waitForPageToLoad("30000");
60 selenium.click("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 }
80 }