/** * 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 _StreamStatus from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/streamStatus'; import _ViewComponent from 'salesforce-pageobjects/runtime_copilot_base/pageObjects/viewComponent'; /** * Component that provides a streaming-based progress indicator message and allows interaction with actions defined in the component. * Selector: src-streaming-indicator * generated from JSON dist/runtime_copilot_base/streamingIndicator.utam.json * @version 2026-03-09T13:56:37.344Z * @author Salesforce */ export default class StreamingIndicator extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that the status container is present and visible * @return boolean */ isStatusContainerVisible(): Promise; /** * Check that the footer area is present and visible * @return boolean */ isFooterAreaVisible(): Promise; waitForStreamStatus(): Promise<_StreamStatus>; waitForViewActionComponent(): Promise<_ViewComponent>; /** * Represents the custom status indicator element */ getStreamStatus(): Promise<_StreamStatus>; /** * Represents the view component for actions */ getViewActionComponent(): Promise<_ViewComponent | null>; }