/** * 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 } from '@utam/core'; import _ViewComponent from 'salesforce-pageobjects/feeds/chat/pageObjects/viewComponent'; /** * A component that simulates a typing animation with steps and optionally displays action buttons based on provided actions. * Selector: src-status-typing * generated from JSON dist/feeds/chat/statusTyping.utam.json * @version 2026-03-09T13:56:35.693Z * @author Salesforce */ export default class StatusTyping extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieves the title attribute of the status container * @return string */ getStatusContainerTitle(attrName: string): Promise; /** * Retrieves the text message of a specific step * @return string */ getStepMessage(): Promise; /** * Checks if the checkmark icon is visible (indicating step completion) * @return boolean */ isCheckmarkIconVisible(): Promise; /** * Checks if the star icon is present (indicating step not completed) * @return boolean[] */ isStarIconPresent(): Promise; /** * Retrieves the assistive text for screen readers * @return string */ getAssistiveText(): Promise; /** * Checks if the footer area is visible * @return boolean */ isFooterAreaVisible(): Promise; /** * Returns true if element "checkmarkIcon" present on the page * @return boolean */ verifyCheckmarkIconPresence(): Promise; /** * Returns true if element "starIcon" present on the page * @return boolean[] */ verifyStarIconPresence(): Promise; /** * Returns true if element "assistiveText" present on the page * @return boolean */ verifyAssistiveTextPresence(): Promise; waitForActionButton(): Promise<_ViewComponent>; /** * Represents the action button that triggers an event handler when clicked. */ getActionButton(): Promise<_ViewComponent | null>; }