1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.demo.uif.library.clientresponsiveness;
17
18 import org.junit.Ignore;
19 import org.junit.Test;
20
21 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
22 import org.openqa.selenium.Keys;
23
24
25
26
27 public class DemoClientResponsivenessAjaxFieldQueryAft extends WebDriverLegacyITBase {
28
29
30
31
32 public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-AjaxFieldQueryView";
33
34 @Override
35 protected String getBookmarkUrl() {
36 return BOOKMARK_URL;
37 }
38
39 @Override
40 protected void navigate() throws Exception {
41 waitAndClickById("Demo-LibraryLink", "");
42 waitAndClickByLinkText("Client Responsiveness");
43 waitAndClickByLinkText("AJAX Field Query");
44 }
45
46 protected void testClientResponsivenessAjaxFieldQuery() throws Exception {
47 waitAndClickByLinkText("Ajax Field Query");
48 waitForElementPresentByXpath("//input[@name='inputField3' and @value='a1']");
49 clickAndTabByName("inputField3");
50 assertTextPresent(new String[] {"Travel Account 1", "fred"});
51 }
52
53 protected void testClientResponsivenessAjaxFieldQueryCustomMethod() throws Exception {
54 waitAndClickByLinkText("Ajax Field Query Custom Method");
55 waitForElementPresentByXpath("//input[@name='inputField6' and @value='a2']");
56 clickAndTabByName("inputField6");
57 assertTextPresent(new String[] {"Travel Account 2", "fran"});
58 }
59
60 protected void testClientResponsivenessAjaxFieldQueryCustomMethodAndService() throws Exception {
61 waitAndClickByLinkText("Ajax Field Query Custom Method and Service");
62 waitForElementPresentByXpath("//input[@name='inputField9' and @value='a3']");
63 clickAndTabByName("inputField9");
64 assertTextPresent(new String[]{"Travel Account 3", "frank"});
65 }
66
67
68
69
70
71
72 private void clickAndTabByName(String name) throws InterruptedException {
73 waitAndClickByName(name);
74 driver.switchTo().activeElement().sendKeys(Keys.TAB);
75 }
76
77 @Test
78 @Ignore
79 public void testClientResponsivenessAjaxFieldQueryBookmark() throws Exception {
80 testClientResponsivenessAjaxFieldQuery();
81 testClientResponsivenessAjaxFieldQueryCustomMethod();
82 passed();
83 }
84
85 @Test
86 @Ignore
87 public void testClientResponsivenessAjaxFieldQueryNav() throws Exception {
88 testClientResponsivenessAjaxFieldQuery();
89 testClientResponsivenessAjaxFieldQueryCustomMethod();
90 passed();
91 }
92
93 @Test
94 @Ignore
95 public void testClientResponsivenessAjaxFieldQueryCustomMethodAndServiceBookmark() throws Exception {
96 testClientResponsivenessAjaxFieldQueryCustomMethodAndService();
97 passed();
98 }
99
100 @Test
101 @Ignore
102 public void testClientResponsivenessAjaxFieldQueryCustomMethodAndServiceNav() throws Exception {
103 testClientResponsivenessAjaxFieldQueryCustomMethodAndService();
104 passed();
105 }
106 }