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.widgets;
17  
18  import org.junit.Test;
19  import org.kuali.rice.krad.demo.uif.library.LibraryBase;
20  import org.openqa.selenium.By;
21  
22  /**
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public class LibraryWidgetsHelpAft extends LibraryBase {
26  
27      /**
28       * /kr-krad/kradsampleapp?viewId=Demo-HelpView&methodToCall=start
29       */
30      public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-HelpView&methodToCall=start";
31  
32      @Override
33      protected String getBookmarkUrl() {
34          return BOOKMARK_URL;
35      }
36  
37      @Override
38      protected void navigate() throws Exception {
39          navigateToLibraryDemo("Widgets", "Help");
40      }
41  
42      protected void testWidgetsTooltipHelp() throws Exception {
43      	fireMouseOverEventByXpath("//label[@id='Demo-Help-Field1_label']");
44      	waitForElementPresentByXpath("//div[@class='popover top in']");
45      	fireMouseOverEventByXpath("//label[@id='Demo-Help-Field2_label']");
46      	waitForElementPresentByXpath("//div[@class='popover top in']");
47      	fireMouseOverEventByXpath("//label[@id='Demo-Help-Override-Tooltip_label']");
48      	waitForElementPresentByXpath("//div[@class='popover top in']");
49      	fireMouseOverEventByXpath("//label[@id='Demo-Help-Override-On-Focus-Tooltip_label']");
50      	waitForElementPresentByXpath("//div[@class='popover top in']");
51      	fireMouseOverEventByXpath("//label[@id='Demo-Help-Checkbox_label']");
52      	waitForElementPresentByXpath("//div[@class='popover top in']");
53      	fireMouseOverEventByXpath("//a[@data-linkfor='Demo-Help-DisplayOnlyFields_disclosureContent']");
54      	waitForElementPresentByXpath("//div[@class='popover top in']");
55      }
56  
57      protected void testMissingTooltipHelp() throws Exception {
58         selectByName("exampleShown","Missing Tooltip Help");
59         fireEvent("dataField1", "focus");
60         waitForElementNotPresent(By.xpath("//div[@class='popover top in']"));
61      }
62      
63      protected void testExternalHelp() throws Exception {
64      	selectByName("exampleShown","External Help");
65      	waitAndClickByXpath("//div[@id='Demo-Help-Section3_disclosureContent']/div/div/div/button[@title='Help for Field Label']");
66      	switchToWindow("Kuali Foundation");
67      	switchToWindow("Kuali");
68      	waitAndClickByXpath("//div[@id='Demo-Help-Section3_disclosureContent']/div[2]/div/div/button[@title='Help for Field Label']");
69      	switchToWindow("Kuali Foundation");
70      	switchToWindow("Kuali");
71      	waitAndClickByXpath("//div[@id='Demo-Help-Section3_disclosureContent']/div[3]/div/div/button[@title='Help for Field Label']");
72      	switchToWindow("Kuali Foundation");
73      	switchToWindow("Kuali");
74      }
75      
76      private void testAllHelp() throws Exception {
77      	testWidgetsTooltipHelp();
78          testMissingTooltipHelp();
79  	    testExternalHelp();
80  	    passed();
81      }
82  
83      @Test
84      public void testWidgetsHelpBookmark() throws Exception {
85      	testAllHelp();
86      }
87  
88      @Test
89      public void testWidgetsHelpNav() throws Exception {
90      	testAllHelp();
91      }
92  }