1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.travelview;
17
18 import edu.samplu.common.KradMenuLegacyITBase;
19 import org.junit.Test;
20
21
22
23
24 public class MaintenanceHeaderLegacyIT extends KradMenuLegacyITBase {
25 @Override
26 protected String getLinkLocator() {
27 return "Travel Account Maintenance (New)";
28 }
29
30 @Test
31
32
33
34 public void testVerifyHeaderFieldsLegacy() throws Exception {
35 gotoMenuLinkLocator();
36 assertElementPresentByXpath("//div[contains(@class, 'uif-documentNumber')]");
37 assertElementPresentByXpath("//div[contains(@class, 'uif-documentInitiatorNetworkId')]");
38 assertElementPresentByXpath("//div[contains(@class, 'uif-documentStatus')]");
39 assertElementPresentByXpath("//div[contains(@class, 'uif-documentCreateDate')]");
40 }
41 }