1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.compview;
17
18 import edu.samplu.common.UpgradedSeleniumITBase;
19 import junit.framework.Assert;
20 import org.junit.Test;
21
22
23
24
25
26
27
28 public class UifTooltipIT extends UpgradedSeleniumITBase {
29 @Override
30 public String getTestUrl() {
31
32 return "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page10";
33 }
34
35 @Test
36 public void testTooltip() throws Exception {
37
38 selenium.fireEvent("name=field1", "focus");
39 Assert.assertTrue(selenium.isVisible(
40 "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
41
42 selenium.fireEvent("name=field1", "blur");
43 Assert.assertFalse(selenium.isVisible(
44 "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
45
46 selenium.mouseOver("name=field2");
47 Assert.assertTrue(selenium.isVisible(
48 "//td[contains(.,\"This is a tool-tip with different position and tail options\")]"));
49
50 selenium.mouseOut("name=field2");
51 Assert.assertFalse(selenium.isVisible(
52 "//td[contains(.,\"This is a tool-tip with different position and tail options\")]"));
53
54 selenium.type("name=field1", "1");
55 selenium.fireEvent("name=field1", "blur");
56 selenium.fireEvent("name=field1", "focus");
57 Assert.assertFalse(selenium.isVisible(
58 "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
59 }
60 }