/** * 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'; /** * Component that displays a card with a title, subtitle, image, description, and a clickable link for launching a specific action or page. * Selector: experience_ui_gen_canvas-launch-tile * generated from JSON dist/experience/ui/gen/canvas/launchTile.utam.json * @version 2026-03-09T13:56:35.522Z * @author Salesforce */ export default class LaunchTile extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulates a user clicking the launch link */ clickLaunchLink(): Promise; /** * Returns the text content of the card header title * @return string */ getCardTitleText(): Promise; /** * Returns the alt text of the article image * @return string */ getArticleImageAltText(attrName: string): Promise; /** * Returns the text content of the article title * @return string */ getArticleTitleText(): Promise; /** * Returns the text content of the article description * @return string */ getArticleDescriptionText(): Promise; /** * Checks if the launch link is visible * @return boolean */ isLaunchLinkVisible(): Promise; }