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')]", "Expected Demo - Travel Application did back work?");
61 assertTextPresent("Demo - Travel Application", "Expected Demo - Travel Application did back work?");
62 }
63
64 protected void testInquiryBackToLoginButton() throws Exception {
65 waitAndClickButtonByText("Back");
66 Thread.sleep(2000);
67 waitForElementPresentById("Rice-LoginButton", "Expected Demo - Travel Application did back work?");
68 assertTextPresent("Demo - Travel Application", "Expected Demo - Travel Application did back work?");
69 }
70
71 protected void testCollapseExpand() throws InterruptedException {
72 waitForElementPresentByClassName("demo-contactInfo");
73 assertTextPresent("Travel Account Number:");
74 assertTextPresent(EXPAND_ALL);
75 assertTextPresent(COLLAPSE_ALL);
76 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, "");
77
78 waitAndClickButtonByText(COLLAPSE_ALL);
79 assertIsNotVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, " after clicking " + COLLAPSE_ALL);
80
81 waitAndClickButtonByText(EXPAND_ALL);
82 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, " after clicking " + EXPAND_ALL);
83 }
84
85 protected void testInquiryLightBox() throws Exception {
86 waitAndClickByLinkText("a6");
87 assertIsVisibleByXpath(ANCHOR_TITLE_TRAVEL_ACCOUNT, "");
88 }
89
90 @Test
91 public void testInquiryCollapseExpandBookmark() throws Exception {
92 testCollapseExpand();
93 passed();
94 }
95
96 @Test
97 public void testInquiryLightBoxBookmark() throws Exception {
98 testInquiryLightBox();
99 passed();
100 }
101
102 @Test
103 public void testInquiryBackButtonBookmark() throws Exception {
104 testInquiryBackToLoginButton();
105 passed();
106 }
107
108 @Test
109 public void testInquiryCollapseExpandNav() throws Exception {
110 testCollapseExpand();
111 passed();
112 }
113
114 @Test
115 public void testInquiryLightBoxNav() throws Exception {
116 testInquiryLightBox();
117 passed();
118 }
119
120 @Test
121 public void testInquiryBackButtonNav() throws Exception {
122 testInquiryBackButton();
123 passed();
124 }
125 }