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 MaintenanceFieldsWDIT extends WebDriverLegacyITBase {
27 public static final String TEST_URL = ITUtil.PORTAL + "?channelTitle=Travel%20Account%20Maintenance%20(New)&channelUrl=" + ITUtil.getBaseUrlString() +
28 "/kr-krad/maintenance?methodToCall=start&dataObjectClassName=edu.sampleu.travel.bo.TravelAccount&viewName=ks_maintenance&returnLocation=" +
29 ITUtil.PORTAL_URL + "&hideReturnLink=true";
30 @Override
31 public String getTestUrl() {
32 return TEST_URL;
33 }
34
35 @Test
36
37
38
39 public void testVerifyFieldsLegacy() throws Exception {
40 super.testVerifyFieldsLegacy();
41 }
42 }