1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.krad.reference;
17
18 import org.junit.Test;
19 import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
20 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
21 import org.kuali.rice.testtools.selenium.WebDriverUtils;
22
23
24
25
26
27
28 public class EmploymentStatusAft extends WebDriverLegacyITBase {
29
30
31
32
33
34
35
36 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Employment%20Status&channelUrl="
37 + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD +
38 "org.kuali.rice.kim.impl.identity.employment.EntityEmploymentStatusBo&docFormKey=88888888&returnLocation="
39 + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;
40
41 @Override
42 protected String getBookmarkUrl() {
43 return BOOKMARK_URL;
44 }
45
46 @Override
47 protected void navigate() throws InterruptedException {
48 waitAndClickKRAD();
49 waitAndClickByLinkText("Employment Status");
50 }
51
52
53 protected void testEmploymentStatus() throws Exception {
54 selectFrameIframePortlet();
55 waitAndClickButtonByText("Search");
56 assertTextPresent(new String[][]{{"Active"}, {"Deceased"}, {"On Non-Pay Leave"}});
57 waitAndTypeByName("lookupCriteria[name]","Active");
58 waitAndClickButtonByText("Search");
59 waitForTextNotPresent("Deceased");
60 }
61
62 @Test
63 public void testEmploymentStatusBookmark() throws Exception {
64 testEmploymentStatus();
65 passed();
66 }
67
68 @Test
69 public void testEmploymentStatusNav() throws Exception {
70 testEmploymentStatus();
71 passed();
72 }
73 }