UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

21 lines 1.01 kB
import { ComponentWrapper, ElementWrapper } from "@awsui/test-utils-core/selectors"; import ButtonDropdownWrapper from '../button-dropdown'; export default class BreadcrumbGroupWrapper extends ComponentWrapper { static rootSelector: string; /** * Returns all breadcrumb items. Note that this includes the 'current' page item for backwards compatibility, * even though it is not technically a link. * * To find a specific item use the `findBreadcrumbLink(n)` function as chaining `findBreadcrumbLinks().get(n)` can return unexpected results. * @see findBreadcrumbLink */ findBreadcrumbLinks(): import("@awsui/test-utils-core/selectors").MultiElementWrapper<ElementWrapper>; /** * Returns an item for a given index. Note that this may return the 'current' page item for backwards compatibility, * even though it is not technically a link. * * @param index 1-based item index */ findBreadcrumbLink(index: number): ElementWrapper; findDropdown(): ButtonDropdownWrapper; }