1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs.kitchensink;
17
18 import org.junit.Test;
19
20
21
22
23
24 public class LabsLookupsAft extends LabsKitchenSinkBase {
25
26 public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&formKey=49dbef40-65ef-424a-ae8a-1741cf947fee&cacheKey=eu0yn3vhdhhb753reybcvd&pageId=UifCompView-Page6&lightbox=true#UifCompView-Page6";
27
28 private static final String IFRAME_XPATH="//iframe[@class='fancybox-iframe']";
29
30 @Override
31 protected String getBookmarkUrl() {
32 return BOOKMARK_URL;
33 }
34
35 @Override
36 protected void navigate() throws Exception {
37 navigateToKitchenSink("Lookups, etc");
38 }
39
40 @Test
41 public void testLookupsBookmark() throws Exception {
42 testLookups();
43 passed();
44 }
45
46 @Test
47 public void testLookupsNav() throws Exception {
48 testLookups();
49 passed();
50 }
51
52 protected void testLookups() throws InterruptedException {
53
54
55
56
57
58
59 clearTextByName("field72");
60 waitAndTypeByName("field72","a2");
61 fireEvent("field72", "blur");
62 waitAndClickByName("field76");
63 waitForTextPresent("Travel Account 2");
64
65 clearTextByName("field76");
66 waitAndTypeByName("field76","a1");
67 fireEvent("field76", "blur");
68 waitForTextPresent("Travel Account 1");
69
70 String field79Value = waitAndGetAttributeByName("field79", "value");
71 jGrowl("field79's value is: " + field79Value);
72 clearTextByName("field79");
73 waitAndTypeByName("field79", "a3");
74 fireEvent("field79", "blur");
75 waitAndClickByName("field60");
76 waitForTextPresent("Travel Account 3");
77
78 waitAndClickByXpath("//button[@class='btn btn-default uif-action icon-search']");
79 gotoIframeByXpath(IFRAME_XPATH);
80 waitAndClickSearchByText();
81 waitAndClickReturnValue();
82 waitAndClickByXpath("//div[@data-parent='refreshLookups1']/div/div/button[@class='btn btn-default uif-action icon-search']");
83 gotoIframeByXpath(IFRAME_XPATH);
84 waitAndClickSearchByText();
85 waitAndClickReturnValue();
86
87 clearTextByName("field70");
88 waitAndTypeByName("field70", "a1");
89 waitAndClickByXpath("//button[@title='Direct Inquiry']");
90 gotoLightBox();
91 assertTextPresent(new String[] {"Travel Account Number:", "a1", "Travel Account Name:", "Travel Account 1", "Code And Description:", "IAT - Income"});
92 waitAndClickButtonByText("Close");
93 }
94 }