1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.travelview;
17
18 import org.junit.Test;
19
20 import edu.samplu.common.ITUtil;
21 import edu.samplu.common.WebDriverLegacyITBase;
22
23
24
25
26 public class MaintenanceExpandCollapseWDIT extends WebDriverLegacyITBase {
27
28 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Travel%20Account%20Maintenance%20(New)&channelUrl=" + ITUtil.getBaseUrlString() +
29 "/kr-krad/maintenance?methodToCall=start&dataObjectClassName=edu.sampleu.travel.bo.TravelAccount&viewName=ks_maintenance&returnLocation=" +
30 ITUtil.PORTAL_URL + "&hideReturnLink=true";
31 @Override
32 public String getTestUrl() {
33 return TEST_URL;
34 }
35
36 @Test
37
38
39
40 public void testVerifyExpandCollapse() throws Exception {
41 super.testVerifyExpandCollapse();
42 }
43 }