1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.travel.krad.test;
17
18 import static org.junit.Assert.*;
19
20 import org.junit.Test;
21 import org.openqa.selenium.Alert;
22 import org.openqa.selenium.By;
23 import org.openqa.selenium.WebElement;
24
25 import edu.samplu.common.ITUtil;
26 import edu.samplu.common.WebDriverLegacyITBase;
27
28
29
30
31
32
33 public class InquiryWDIT extends WebDriverLegacyITBase {
34 public static final String TEST_URL = ITUtil.PORTAL
35 + "?channelTitle=Travel%20Account%20Lookup&channelUrl="
36 + ITUtil.getBaseUrlString()
37 + "/kr-krad/lookup?methodToCall=start&dataObjectClassName=edu.sampleu.travel.bo.TravelAccount&returnLocation="
38 + ITUtil.PORTAL_URL + "&hideReturnLink=true&showMaintenanceLinks=true";
39
40 @Override
41 public String getTestUrl() {
42 return TEST_URL;
43 }
44
45 @Test
46 public void testInquiry() throws Exception {
47 super.testInquiry();
48
49 }
50 }