View Javadoc

1   package edu.samplu.common;
2   
3   import static org.junit.Assert.assertEquals;
4   
5   /**
6    * @deprecated Use WebDriverITBase for new tests.
7    * @author Kuali Rice Team (rice.collab@kuali.org)
8    */
9   public abstract class MenuITBase extends UpgradedSeleniumITBase {
10      @Override
11      public String getTestUrl() {
12          return PORTAL;
13      }
14  
15      /**
16       * Override to return menu click selector (e.g. "link=Main Menu")
17       * @return selenium locator to click on
18       */
19      protected abstract String getMenuLinkLocator();
20  
21      /**
22       * Override to return main menu click selector (e.g. "link=Agenda lookup")
23       * @return selenium locator to click on
24       */
25      protected abstract String getLinkLocator();
26  
27  
28      /**
29       * Override to return main menu click selector (e.g. "//img[@alt='create new']")
30       * @return selenium locator to click on
31       */
32      protected abstract String getCreateNewLinkLocator();
33  
34      /**
35       * go to the getMenuLinkLocator() Menu and click the getLinkLocator()
36       */
37      protected void gotoMenuLinkLocator() {
38          assertEquals("Kuali Portal Index", selenium.getTitle());
39          selenium.click(getMenuLinkLocator());
40          selenium.waitForPageToLoad("30000");
41          assertEquals("Kuali Portal Index", selenium.getTitle());
42          selenium.click(getLinkLocator());
43          selenium.waitForPageToLoad("30000");
44          assertEquals("Kuali Portal Index", selenium.getTitle());
45          selenium.selectFrame("iframeportlet");
46      }
47  
48      /**
49       * go to having clicked create new of the getLinkLocator()
50       */
51      protected void gotoCreateNew() {
52          gotoMenuLinkLocator();
53          selenium.click(getCreateNewLinkLocator());
54          //        selenium.selectFrame("relative=up");
55          selenium.waitForPageToLoad("30000");
56      }
57  }