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 ConfigViewConfiguredPropertiesAftBase extends AdminTmplMthdAftNavBase {
26  
27      
28  
29  
30  
31      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL+"?channelTitle=Configuration%20Viewer&channelUrl="+ WebDriverUtils
32              .getBaseUrlString()+"/ksb/ConfigViewer.do";
33  
34  
35      @Override
36      protected String getBookmarkUrl() {
37          return BOOKMARK_URL;
38      }
39  
40      
41  
42  
43  
44  
45      @Override
46      protected String getLinkLocator() {
47          return "Configuration Viewer";
48      }
49  
50      public void testConfigViewConfiguredPropertiesBookmark(JiraAwareFailable failable) throws Exception {
51          testConfigViewConfiguredProperties();
52          passed();
53      }
54  
55      public void testConfigViewConfiguredPropertiesNav(JiraAwareFailable failable) throws Exception {
56          testConfigViewConfiguredProperties();
57          passed();
58      }    
59      
60      public void testConfigViewConfiguredProperties() throws Exception {
61          selectFrameIframePortlet();
62          waitAndClickByLinkText("Refresh Page");
63      }
64  }