1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.demo.uif.library.general;
17
18 import org.junit.Test;
19
20 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
21 import org.openqa.selenium.By;
22
23
24
25
26 public class LibraryGeneralFeaturesUnifiedViewHeaderAft extends WebDriverLegacyITBase {
27
28
29
30
31 public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-UnifiedHeaderView&methodToCall=start";
32
33 @Override
34 protected String getBookmarkUrl() {
35 return BOOKMARK_URL;
36 }
37
38 @Override
39 protected void navigate() throws Exception {
40 waitAndClickLibraryLink();
41 waitAndClickByLinkText("General Features");
42 waitAndClickByLinkText("Unified View Header");
43 }
44
45 protected void testGeneralFeaturesUnifiedHeader() throws Exception {
46 selectByName("exampleShown", "Unified Header");
47 waitAndClickByLinkText("Unified example");
48 switchToWindow("Kuali :: View Header");
49 waitForElementPresent(By.xpath("//h1/span[@class='uif-headerText-span']"));
50 assertElementPresentByXpath("//h1/span[2]/p[@class='uif-viewHeader-supportTitle']");
51 driver.close();
52 switchToWindow("Kuali");
53 }
54
55 protected void testGeneralFeaturesNonUnifiedHeader() throws Exception {
56 selectByName("exampleShown", "Non-Unified Header");
57 waitAndClickByLinkText("Non-Unified example");
58 switchToWindow("Kuali :: View Header");
59 waitForElementPresent(By.xpath("//h1/span[@class='uif-headerText-span']"));
60 assertElementPresentByXpath("//h2/span[@class='uif-headerText-span']");
61 driver.close();
62 switchToWindow("Kuali");
63 }
64
65 protected void testGeneralFeaturesUnifiedHeaderOptions() throws Exception {
66 selectByName("exampleShown", "Options");
67 waitAndClickByLinkText("Additional unified header options");
68 switchToWindow("Kuali :: View Header");
69 assertTextPresent(new String[]{"metadata information", "Custom Support/Page title"});
70 assertElementPresentByXpath("//h1/p[@class='uif-viewHeader-areaTitle']");
71 assertElementPresentByXpath("//h1/span[@class='uif-headerText-span']");
72 driver.close();
73 switchToWindow("Kuali");
74 }
75
76 @Test
77 public void testGeneralFeaturesUnifiedViewHeaderBookmark() throws Exception {
78 testGeneralFeaturesUnifiedHeaderOptions();
79 testGeneralFeaturesUnifiedHeader();
80 testGeneralFeaturesNonUnifiedHeader();
81 passed();
82 }
83
84 @Test
85 public void testGeneralFeaturesUnifiedViewHeaderNav() throws Exception {
86 testGeneralFeaturesUnifiedHeaderOptions();
87 testGeneralFeaturesUnifiedHeader();
88 testGeneralFeaturesNonUnifiedHeader();
89 passed();
90 }
91 }