1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
24
25 public class LibraryWidgetsHelpAft extends LibraryBase {
26
27
28
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 }