View Javadoc
1   /**
2    * Copyright 2005-2014 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 org.kuali.rice.krad.demo.uif.library.clientresponsiveness;
17  
18  import org.junit.Ignore;
19  import org.junit.Test;
20  
21  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
22  import org.openqa.selenium.Keys;
23  
24  /**
25   * @author Kuali Rice Team (rice.collab@kuali.org)
26   */
27  public class DemoClientResponsivenessAjaxFieldQueryAft extends WebDriverLegacyITBase {
28  
29      /**
30       * /kr-krad/kradsampleapp?viewId=Demo-AjaxFieldQueryView
31       */
32      public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-AjaxFieldQueryView";
33  
34      @Override
35      protected String getBookmarkUrl() {
36          return BOOKMARK_URL;
37      }
38  
39      @Override
40      protected void navigate() throws Exception {
41          waitAndClickById("Demo-LibraryLink", "");
42          waitAndClickByLinkText("Client Responsiveness");
43          waitAndClickByLinkText("AJAX Field Query");
44      }
45  
46      protected void testClientResponsivenessAjaxFieldQuery() throws Exception {
47      	waitAndClickByLinkText("Ajax Field Query");
48      	waitForElementPresentByXpath("//input[@name='inputField3' and @value='a1']");
49          clickAndTabByName("inputField3");
50          assertTextPresent(new String[] {"Travel Account 1", "fred"});
51      }
52      
53      protected void testClientResponsivenessAjaxFieldQueryCustomMethod() throws Exception {
54          waitAndClickByLinkText("Ajax Field Query Custom Method");
55      	waitForElementPresentByXpath("//input[@name='inputField6' and @value='a2']");
56          clickAndTabByName("inputField6");
57          assertTextPresent(new String[] {"Travel Account 2", "fran"});
58      }
59      
60      protected void testClientResponsivenessAjaxFieldQueryCustomMethodAndService() throws Exception {
61          waitAndClickByLinkText("Ajax Field Query Custom Method and Service");
62      	waitForElementPresentByXpath("//input[@name='inputField9' and @value='a3']");
63          clickAndTabByName("inputField9");
64          assertTextPresent(new String[]{"Travel Account 3", "frank"});
65      }
66  
67      /**
68       * focus, blur seem real flaky on xvfb, maybe click and tab will be better
69       * @param name
70       * @throws InterruptedException
71       */
72      private void clickAndTabByName(String name) throws InterruptedException {
73          waitAndClickByName(name);
74          driver.switchTo().activeElement().sendKeys(Keys.TAB); // update to call typeTab() in 2.5+
75      }
76  
77      @Test
78      @Ignore // https://jira.kuali.org/browse/RICEQA-434 AFT Failures in CI that pass locally
79      public void testClientResponsivenessAjaxFieldQueryBookmark() throws Exception {
80          testClientResponsivenessAjaxFieldQuery();
81          testClientResponsivenessAjaxFieldQueryCustomMethod();
82          passed();
83      }
84  
85      @Test
86      @Ignore // https://jira.kuali.org/browse/RICEQA-434 AFT Failures in CI that pass locally
87      public void testClientResponsivenessAjaxFieldQueryNav() throws Exception {
88          testClientResponsivenessAjaxFieldQuery();
89          testClientResponsivenessAjaxFieldQueryCustomMethod();
90          passed();
91      }
92  
93      @Test
94      @Ignore // https://jira.kuali.org/browse/RICEQA-434 AFT Failures in CI that pass locally
95      public void testClientResponsivenessAjaxFieldQueryCustomMethodAndServiceBookmark() throws Exception {
96          testClientResponsivenessAjaxFieldQueryCustomMethodAndService();
97          passed();
98      }
99  
100     @Test
101     @Ignore // https://jira.kuali.org/browse/RICEQA-434 AFT Failures in CI that pass locally
102     public void testClientResponsivenessAjaxFieldQueryCustomMethodAndServiceNav() throws Exception {
103         testClientResponsivenessAjaxFieldQueryCustomMethodAndService();
104         passed();
105     }
106 }