View Javadoc
1   /**
2    * Copyright 2005-2015 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.Test;
19  
20  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
21  import org.openqa.selenium.By;
22  
23  /**
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class LibraryClientResponsivenessEventsAft extends WebDriverLegacyITBase {
27  
28      /**
29       * /kr-krad/kradsampleapp?viewId=Demo-EventsView
30       */
31      public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-EventsView";
32  
33      @Override
34      protected String getBookmarkUrl() {
35          return BOOKMARK_URL;
36      }
37  
38      @Override
39      protected void navigate() throws Exception {
40          waitAndClickLibraryLink();
41          waitAndClickByLinkText("Client Responsiveness");
42          waitAndClickByLinkText("Events");
43      }
44  
45      protected void testClientResponsivenessEventsClick() throws Exception {
46      	waitAndClickByName("inputField1");
47          acceptAlert();
48          waitAndClickByName("inputField2");
49          acceptAlert();
50      	waitAndClickByXpath("//input[@name='inputField3' and @value='blue']");
51      	waitForElementPresentByXpath("//div[@style='border: 1px solid rgb(153, 153, 153); width: auto; background-color: rgb(0, 0, 255);']");
52      	waitAndClickByName("inputField4");
53          acceptAlert();
54      	waitAndClickByXpath("//input[@name='inputField5' and @value='1']");
55          acceptAlert();
56      }
57      
58      protected void testClientResponsivenessEventsChangeFocusBlur() throws Exception {
59      	waitAndClickByLinkText("OnChange, OnFocus, OnBlur Examples");
60      	selectByName("inputField6","Yellow");
61      	waitForElementVisibleBy(By.xpath("//div[@id='Demo-Events-Example2A' and @style='background-color: rgb(255, 255, 0);']"));
62      	fireEvent("inputField7", "focus");
63      }
64      
65      protected void testClientResponsivenessEventsMouseEvent() throws Exception {
66      	waitAndClickByLinkText("Mouse Events");
67      	fireMouseOverEventByXpath("//div[@data-label='Checkbox' and @data-parent='Demo-Events-Example3']");
68      	waitForElementPresentByXpath("//div[@style='border: 10px solid rgb(153, 153, 153); width: 50%; overflow; hidden; font-size: 3em; margin-left: 0px;']");
69      	waitAndClickByXpath("//input[@name='inputField8' and @value='red']");
70      	fireMouseOverEventByName("inputField8");
71      	waitForElementPresentByXpath("//div[@style='width: auto; background-color: rgb(255, 0, 0);']");
72      	waitAndClickByXpath("//div[@class='kr-photo uif-boxLayoutVerticalItem pull-left clearfix']");
73      }
74      
75      protected void testClientResponsivenessEventsMouseEventOnButtons() throws Exception {
76      	waitAndClickByLinkText("Mouse Events on Buttons");
77      	waitForElementPresentByXpath("//button[@style='margin-top:10px;']");
78      }
79      
80      protected void testClientResponsivenessEventsGroupAndSectionEvents() throws Exception {
81      	waitAndClickByLinkText("Group and Section Events");
82      	fireMouseOverEventByXpath("//div[@data-parent='Demo-Events-Example5']");
83      	waitForElementPresentByXpath("//div[@data-parent='Demo-Events-Example5' and @style='height: 200px; width: 300px; background-color: rgb(255, 255, 255);']");
84      }
85      
86      protected void testClientResponsivenessEventsOnKeyPressUpDown() throws Exception {
87      	waitAndClickByLinkText("OnKeyPress, OnKeyUp, OnKeyDown Examples");
88      	waitAndTypeByName("inputField13","a");
89          acceptAlert();
90      }
91  
92      
93      @Test
94      public void testClientResponsivenessEventsBookmark() throws Exception {
95      	testClientResponsivenessEventsAll();
96      }
97  
98      @Test
99      public void testClientResponsivenessEventsNav() throws Exception {
100     	testClientResponsivenessEventsAll();
101     }  
102     
103     private void testClientResponsivenessEventsAll() throws Exception {
104     	testClientResponsivenessEventsClick();
105     	testClientResponsivenessEventsChangeFocusBlur();
106     	testClientResponsivenessEventsMouseEvent();
107     	testClientResponsivenessEventsMouseEventOnButtons();
108     	testClientResponsivenessEventsGroupAndSectionEvents();
109     	testClientResponsivenessEventsOnKeyPressUpDown();
110     	passed();
111     }
112 }