1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.sampleu.admin;
17
18 import org.kuali.rice.testtools.common.JiraAwareFailable;
19 import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
20 import org.kuali.rice.testtools.selenium.WebDriverUtils;
21
22
23
24
25 public abstract class AddingNameSpacesAftBase extends AdminTmplMthdAftNavBase {
26
27
28
29
30 public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Namespace&channelUrl="+ WebDriverUtils
31 .getBaseUrlString()+"/kr/lookup.do?methodToCall=start&businessObjectClassName=org.kuali.rice.coreservice.impl.namespace.NamespaceBo&docFormKey=88888888&returnLocation="+ AutomatedFunctionalTestUtils.PORTAL_URL+"&hideReturnLink=true";
32
33 @Override
34 protected String getBookmarkUrl() {
35 return BOOKMARK_URL;
36 }
37
38
39
40
41
42
43 @Override
44 protected String getLinkLocator() {
45 return "Namespace";
46 }
47
48 public void testAddingNamespaceBookmark(JiraAwareFailable failable) throws Exception {
49 testAddingNamespace(this);
50 passed();
51 }
52
53 public void testAddingNamespaceNav(JiraAwareFailable failable) throws Exception {
54 testAddingNamespace(this);
55 passed();
56 }
57
58 public void testSearchEditBackNav(JiraAwareFailable failable) throws Exception {
59 testSearchEditBack(this);
60 passed();
61 }
62
63 public void testSearchSearchBackNav(JiraAwareFailable failable) throws Exception {
64 testSearchSearchBack(this, "code", "KR-SYS");
65 passed();
66 }
67 }