1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.labs;
17
18 import org.junit.Test;
19 import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20
21
22
23
24 public class LabsBootstrapIconsAft extends WebDriverLegacyITBase {
25
26
27
28
29 public static final String BOOKMARK_URL = "/kr-krad/labs?viewId=Lab-ActionIconMenu";
30
31 @Override
32 protected String getBookmarkUrl() {
33 return BOOKMARK_URL;
34 }
35
36 @Override
37 protected void navigate() throws Exception {
38 waitAndClickByLinkText("Bootstrap Icons");
39 }
40
41 protected void testDemoBootstrapIcons() throws InterruptedException {
42 waitForElementPresentByXpath("//button[@class='btn btn-default uif-secondaryActionButton uif-boxLayoutVerticalItem clearfix icon-home']");
43 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/span[@class='icon-office']");
44 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/span[@class='icon-music']");
45 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/span[@class='icon-connection']");
46 waitForElementPresentByXpath("//a[@class='uif-link uif-boxLayoutVerticalItem clearfix icon-pencil']");
47 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/span/img[@class='actionImage bottomActionImage uif-image']");
48 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/img[@class='actionImage leftActionImage uif-image']");
49 waitForElementPresentByXpath("//button[@class='btn btn-primary uif-primaryActionButton uif-boxLayoutVerticalItem clearfix']/img[@class='actionImage rightActionImage uif-image']");
50 }
51
52 @Test
53 public void testDemoBootstrapIconsBookmark() throws Exception {
54 testDemoBootstrapIcons();
55 passed();
56 }
57
58 @Test
59 public void testDemoBootstrapIconsNav() throws Exception {
60 testDemoBootstrapIcons();
61 passed();
62 }
63 }