1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.admin.test;
17
18 import org.kuali.rice.testtools.selenium.Failable;
19 import org.kuali.rice.testtools.selenium.ITUtil;
20
21
22
23
24 public abstract class IdentityPersonAbstractSmokeTestBase extends AdminTmplMthdSTNavBase{
25
26
27
28
29
30
31 public static final String BOOKMARK_URL = ITUtil.PORTAL + "?channelTitle=Person&channelUrl="
32 + ITUtil.getBaseUrlString() + ITUtil.KNS_LOOKUP_METHOD +
33 "org.kuali.rice.kim.api.identity.Person&docFormKey=88888888&returnLocation=" +
34 ITUtil.PORTAL_URL + ITUtil.HIDE_RETURN_LINK ;
35
36
37
38
39
40
41 @Override
42 protected String getLinkLocator() {
43 return "Person";
44 }
45
46 public void testIdentityPersonBookmark(Failable failable) throws Exception {
47 testSearchEditCancel();
48 passed();
49 }
50
51 public void testIdentityPersonNav(Failable failable) throws Exception {
52 testEditCancel();
53 navigate();
54 testCreateNewCancelNav();
55 passed();
56 }
57 }