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 MaintenanceNotesAndAttachmentsLegacyIT extends KradMenuLegacyITBase {
25 @Override
26 protected String getLinkLocator() {
27 return "Travel Account Maintenance (New)";
28 }
29
30 @Test
31
32
33
34 public void testVerifyNotesAndAttachments() throws Exception {
35 gotoMenuLinkLocator();
36 waitAndClickByXpath("//span[contains(text(),'Notes and Attachments')]");
37 waitForElementPresentByXpath("//button[@title='Add a Note']");
38 assertElementPresentByXpath("//span[contains(text(),'Notes and Attachments')]");
39 assertElementPresentByXpath("//textarea[@name=\"newCollectionLines['document.notes'].noteText\"]");
40 assertElementPresentByXpath("//input[@name='attachmentFile']");
41 assertElementPresentByXpath("//input[@name=\"newCollectionLines['document.notes'].attachment.attachmentTypeCode\"]");
42 passed();
43 }
44 }