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