1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package edu.samplu.krad.configview;
18
19 import edu.samplu.common.WebDriverITBase;
20 import edu.samplu.common.WebDriverLegacyITBase;
21
22 import org.junit.Test;
23 import org.openqa.selenium.By;
24 import org.openqa.selenium.interactions.Actions;
25
26 import static org.junit.Assert.assertEquals;
27 import static org.junit.Assert.assertFalse;
28 import static org.junit.Assert.assertTrue;
29
30
31
32
33
34
35 public class HelpWDIT2 extends WebDriverLegacyITBase {
36
37
38
39
40
41
42
43
44
45
46
47 @Override
48 public String getTestUrl() {
49 return "/kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView-Help&methodToCall=start";
50 }
51
52
53
54
55 @Test
56 public void testViewHelp2() throws Exception {
57 selectFrame("iframeportlet");
58 super.testViewHelp2();
59 }
60
61
62
63
64 @Test
65 public void testExternalHelp2() throws Exception {
66 selectFrame("iframeportlet");
67 super.testExternalHelp2();
68 }
69
70
71
72
73 @Test
74 public void testDisplayOnlyExternalHelp2() throws Exception {
75 selectFrame("iframeportlet");
76 super.testDisplayOnlyExternalHelp2();
77 }
78
79
80
81
82 @Test
83 public void testMissingExternalHelp2() throws Exception {
84 selectFrame("iframeportlet");
85 super.testMissingExternalHelp2();
86 }
87 }