1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.demo.travel.account;
17
18 import edu.samplu.common.SmokeTestBase;
19 import org.junit.Test;
20
21
22
23
24 public class DemoTravelAccountInquirySmokeTest extends SmokeTestBase {
25
26
27
28
29 public static final String ANCHOR_TITLE_TRAVEL_ACCOUNT = "//a[@title='Travel Account ']";
30
31
32
33
34 public static final String BOOKMARK_URL = "/kr-krad/inquiry?methodToCall=start&number=a14&dataObjectClassName=org.kuali.rice.krad.demo.travel.account.TravelAccount";
35
36
37
38
39 public static final String COLLAPSE_ALL = "Collapse All";
40
41
42
43
44 public static final String EXPAND_ALL = "Expand All";
45
46 @Override
47 public String getBookmarkUrl() {
48 return BOOKMARK_URL;
49 }
50
51 @Override
52 protected void navigate() throws Exception {
53 waitAndClickById("Demo-DemoLink", "");
54 waitAndClickByLinkText("Account Inquiry");
55 }
56
57 protected void testInquiryBackButton() throws Exception {
58 waitAndClickButtonByText("Back");
59 Thread.sleep(2000);
60 waitForElementPresentByXpath("//a[contains(text(), 'Account Inquiry')]");
61 assertTextPresent("Demo - Travel Application", "Expected Demo - Travel Application did back work?");
62 }
63
64 protected void testCollapseExpand() throws InterruptedException {
65 waitForElementPresentByClassName("demo-contactInfo");
66 assertTextPresent("Travel Account Number:");
67 assertTextPresent(EXPAND_ALL);
68 assertTextPresent(COLLAPSE_ALL);
69 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, "");
70
71 waitAndClickButtonByText(COLLAPSE_ALL);
72 assertIsNotVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, " after clicking " + COLLAPSE_ALL);
73
74 waitAndClickButtonByText(EXPAND_ALL);
75 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, " after clicking " + EXPAND_ALL);
76 }
77
78 protected void testInquiryLightBox() throws Exception {
79 waitAndClickByLinkText("a6");
80 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, "");
81 }
82
83 @Test
84 public void testInquiryCollapseExpandBookmark() throws Exception {
85 testCollapseExpand();
86 passed();
87 }
88
89 @Test
90 public void testInquiryLightBoxBookmark() throws Exception {
91 testInquiryLightBox();
92 passed();
93 }
94
95 @Test
96 public void testInquiryBackButtonBookmark() throws Exception {
97 testInquiryBackButton();
98 passed();
99 }
100
101 @Test
102 public void testInquiryCollapseExpandNav() throws Exception {
103 testCollapseExpand();
104 passed();
105 }
106
107 @Test
108 public void testInquiryLightBoxNav() throws Exception {
109 testInquiryLightBox();
110 passed();
111 }
112
113 @Test
114 public void testInquiryBackButtonNav() throws Exception {
115 testInquiryBackButton();
116 passed();
117 }
118 }