/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Breadcrumb from 'salesforce-pageobjects/lightning/pageObjects/breadcrumb'; /** * Selector: lightning-breadcrumbs. * Represents the lightning-breadcrumbs Lightning web component. * Retrieve the number of lightning-breadcrumb page objects it contains. Get the href link or the label of a specific breadcrumb at a given index. * generated from JSON dist/lightning/breadcrumbs.utam.json * @version 2026-03-09T13:56:35.986Z * @author Salesforce */ export default class Breadcrumbs extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get breadcrumb label at a position index * @return string */ getBreadcrumbLabelAtIndex(index: number): Promise; /** * Get breadcrumb link URL/href * @return string */ getBreadcrumbHrefAtIndex(index: number): Promise; /** * Get count/size of lightning-breadcrumb elements * @return number */ getBreadcrumbsCount(): Promise; getBreadcrumbAtIndex(index: number): Promise<_Breadcrumb>; }