View Javadoc

1   /*
2    * Copyright 2006-2012 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  
17  package edu.samplu.admin.test;
18  
19  import edu.samplu.common.UpgradedSeleniumITBase;
20  import org.junit.Test;
21  
22  import static org.junit.Assert.fail;
23  
24  /**
25   * test that repeated ajax refreshes work
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class AgendaEditRuleRefreshIT extends UpgradedSeleniumITBase {
29      @Override
30      public String getTestUrl() {
31          return PORTAL;
32      }
33  
34  	@Test
35      /**
36       * test that repeated ajax refreshes work
37       */
38  	public void testAgendaEditRuleRefreshIT() throws Exception {
39  		selenium.click("link=Agenda Lookup");
40  		selenium.waitForPageToLoad("30000");
41  		selenium.selectFrame("iframeportlet");
42  		selenium.click("css=button:contains(earch)"); //  selenium.click("id=32");
43          Thread.sleep(3000);
44  		selenium.waitForPageToLoad("30000");
45          selenium.click("css=a[title='edit Agenda Definition withAgenda Id=T1000 ']"); // selenium.click("id=194_line0");
46  		selenium.waitForPageToLoad("30000");
47  		selenium.click("css=span:contains(Rule1: stub rule lorem ipsum [KrmsActionResolverType: testAction])"); // selenium.click("//li[@id='473_node_0_parent_root']/a");
48          selenium.click("id=472_node_0_parent_node_0_parent_node_0_parent_root_span");
49  		selenium.click("id=361");
50  
51          // click refresh  several times
52          for (int i=0; i<6; i++) {
53              for (int second = 0;; second++) {
54                  if (second >= 60) fail("timeout");
55                  try { if (selenium.isElementPresent("id=440")) break; } catch (Exception e) {}
56                  Thread.sleep(1000);
57              }
58  
59              selenium.click("id=440");
60          }
61  	}
62  }