1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.mainmenu.test;
17
18 import org.kuali.rice.testtools.selenium.Failable;
19 import org.kuali.rice.testtools.selenium.ITUtil;
20
21
22
23
24 public class TermLookUpAbstractSmokeTestBase extends MainTmplMthdSTNavBase{
25
26
27
28
29
30
31
32
33 public static final String BOOKMARK_URL = ITUtil.PORTAL + "?channelTitle=Term%20Lookup&channelUrl="
34 + ITUtil.getBaseUrlString() + ITUtil.KRAD_LOOKUP_METHOD
35 + "org.kuali.rice.krms.impl.repository.TermBo"
36 + ITUtil.SHOW_MAINTENANCE_LINKS
37 + "&returnLocation=" + ITUtil.PORTAL_URL + ITUtil.HIDE_RETURN_LINK;
38
39 protected String getBookmarkUrl() {
40 return BOOKMARK_URL;
41 }
42
43
44
45
46
47 @Override
48 protected String getLinkLocator() {
49 return "Term Lookup";
50 }
51
52 public void testTermLookUpBookmark(Failable failable) throws Exception {
53 testTermLookUp();
54 passed();
55 }
56 public void testTermLookUpNav(Failable failable) throws Exception {
57 testTermLookUp();
58 passed();
59 }
60 }