View Javadoc

1   /**
2    * Copyright 2005-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.samplu.common;
17  
18  import org.junit.Test;
19  
20  import static org.junit.Assert.assertTrue;
21  
22  /**
23   * @deprecated use WebDriverITBase
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public abstract class MainMenuLookupITBase extends MenuITBase {
27      @Override
28      protected String getCreateNewLinkLocator() {
29          return "link=Create New";
30      }
31  
32      @Override
33      protected String getMenuLinkLocator() {
34          return "link=Main Menu";
35      }
36  
37      /**
38       * Override to execute assertions once a looked-up item's edit action is clicked.
39       */
40      public abstract void lookupAssertions();
41  
42      @Test
43      public void testLookUp() throws Exception {
44          selenium.click(getLinkLocator());
45          selenium.waitForPageToLoad("30000");
46          selenium.selectFrame("iframeportlet");
47          selenium.click("css=button:contains(earch)");
48          Thread.sleep(3000);
49          selenium.waitForPageToLoad("30000");
50          selenium.click("link=edit");
51          selenium.waitForPageToLoad("30000");
52          assertTrue(selenium.isTextPresent("submit"));
53          assertTrue(selenium.isTextPresent("Save"));
54          assertTrue(selenium.isTextPresent("blanket approve"));
55          assertTrue(selenium.isTextPresent("Close"));
56          assertTrue(selenium.isTextPresent("Cancel"));
57          lookupAssertions();
58          selenium.click("link=Cancel");
59          selenium.waitForPageToLoad("30000");
60      }
61  }