/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Component that displays a message inside a box, which could be a loading message or a custom message passed to the component. The box gains focus after a short delay. * Selector: src-experience_ui_gen_canvas-/loading-tile * generated from JSON dist/experience/ui/gen/canvas/loadingTile.utam.json * @version 2026-03-09T13:56:35.533Z * @author Salesforce */ export default class LoadingTile extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Focus on the box container */ focusOnBox(): Promise; /** * Check if the box container is visible * @return boolean */ isBoxContainerVisible(): Promise; /** * Check if the shadow div is present * @return boolean */ isShadowDivPresent(): Promise; /** * Get the text from the message element * @return string */ getMessageText(): Promise; waitForBoxContainer(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; waitForShadowDiv(): Promise<(_BaseUtamElement)>; waitForMessageText(): Promise<(_BaseUtamElement)>; }