/** * 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 conditionally displays either a video or an image based on the content type, along with a heading and subheading message. * Selector: app_dev_agent-empty-state * generated from JSON dist/app_dev_agent/emptyState.utam.json * @version 2026-03-09T13:56:34.854Z * @author Salesforce */ export default class EmptyState extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click on the video player */ clickVideo(): Promise; /** * Click on the image display */ clickImage(): Promise; /** * Get the text of the heading * @return string */ getHeadingText(): Promise; /** * Get the text of the subheading * @return string */ getSubHeadingText(): Promise; /** * Check if the video player is visible * @return boolean */ isVideoVisible(): Promise; /** * Check if the image display is visible * @return boolean */ isImageVisible(): Promise; /** * Check if the message wrapper is visible * @return boolean */ isMessageWrapperVisible(): Promise; /** * Returns true if element "videoPlayer" present on the page * @return boolean */ verifyVideoPlayerPresence(): Promise; /** * Returns true if element "imageDisplay" present on the page * @return boolean */ verifyImageDisplayPresence(): Promise; }