/** * 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, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement, ActionableUtamElement as _ActionableUtamElement } from '@utam/core'; import _PrimitiveIcon from 'salesforce-pageobjects/lightning/pageObjects/primitiveIcon'; /** * Selector: lightning-helptext * Represents the lightning-helptext Lightning web component. * Get the lightning-primitive-icon component, assistive text, help description and help icon button * generated from JSON dist/lightning/helptext.utam.json * @version 2026-03-09T13:56:36.099Z * @author Salesforce */ export default class Helptext extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get button aria-describedby attribute value * @return string */ getAriaDescribedBy(): Promise; /** * Performs hover action on the help icon */ hover(): Promise; /** * Applies focus on the help icon */ focus(): Promise; /** * Gets the assistive text of help icon * @return string */ getAssistiveText(): Promise; /** * Gets the help info description * @return string */ getHelpDescription(): Promise; getButtonIcon(): Promise<(_BaseUtamElement)>; getButton(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; getIcon(): Promise<_PrimitiveIcon>; }