1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.krad.labs.kitchensink.compview;
17
18 import org.kuali.rice.testtools.selenium.breadcrumb.BreadcrumbAftBase;
19
20
21
22
23
24 public class DemoBreadcrumbSmokeTest extends BreadcrumbAftBase {
25
26 public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView";
27
28 public static final String DOWN_TRIANGLE_XPATH = "(//a[@class='uif-breadcrumbSiblingLink'])";
29
30 @Override
31 protected String getBookmarkUrl() {
32 return BOOKMARK_URL;
33 }
34
35 @Override
36 protected void navigate() throws Exception {
37 waitAndClickByLinkText("Kitchen Sink");
38 }
39
40 @Override
41 protected String getTriangleXpath() {
42 return this.DOWN_TRIANGLE_XPATH;
43 }
44 }