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 import static org.junit.Assert.assertTrue;
22
23
24
25
26 public class MaintenanceButtonsLegacyIT extends KradMenuLegacyITBase {
27 @Override
28 protected String getLinkLocator() {
29 return "Travel Account Maintenance (New)";
30 }
31 @Test
32
33
34
35 public void testVerifyButtonsLegacy() throws Exception {
36 gotoMenuLinkLocator();
37 assertElementPresentByXpath("//button[contains(.,'ubmit')]");
38 assertElementPresentByXpath("//button[contains(.,'ave')]");
39 assertElementPresentByXpath("//button[contains(.,'lanket approve')]");
40 assertElementPresentByXpath("//button[contains(.,'lose')]");
41 assertElementPresentByXpath("//a[contains(.,'ancel')]");
42 }
43 }