/** * 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, BaseUtamElement as _BaseUtamElement, UtamBaseRootPageObject as _UtamBaseRootPageObject, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: runtime_sales_pathassistant-path-step * Represents the runtime_sales_pathassistant-path-step component. * generated from JSON dist/runtime_sales/pathStep.utam.json * @version 2026-03-09T13:56:36.892Z * @author Salesforce */ declare class PathStep extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on step */ click(): Promise; /** * Focus on step */ focus(): Promise; /** * Is step in focus * @return boolean */ isFocused(): Promise; /** * Get step label * @return string */ getLabel(): Promise; /** * Get step class name * @return string */ getClassName(): Promise; /** * Get step attribute by name * @return string */ getAttribute(attributeName: string): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; getLink(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)[]>; } export = PathStep;