/** * 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 _GenCanvasFormattedNumber from 'salesforce-pageobjects/experience/ui/gen/canvas/pageObjects/genCanvasFormattedNumber'; import _FormattedRichText from 'salesforce-pageobjects/lightning/pageObjects/formattedRichText'; /** * Component that displays a summary of account metrics, including total ACV closed to date, open ACV pipeline, and ACV closed last quarter. * Selector: experience_ui_gen_canvas-tile-recap * generated from JSON dist/experience/ui/gen/canvas/tileRecap.utam.json * @version 2026-03-09T13:56:35.576Z * @author Salesforce */ export default class TileRecap extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Retrieves the text of the title heading * @return string */ getTitleText(): Promise; /** * Checks if the title heading is visible * @return boolean */ getTitleVisibility(): Promise; /** * Retrieves the tooltip text of the Total ACV field title * @return string * @param selectorStr CSS selector parameter */ getTotalACVFieldTitle(selectorStr: string): Promise; /** * Retrieves the tooltip text of the Open ACV field title * @return string * @param selectorStr CSS selector parameter */ getOpenACVFieldTitle(selectorStr: string): Promise; /** * Retrieves the tooltip text of the Qtr Closed ACV field title * @return string * @param selectorStr CSS selector parameter */ getQtrClosedACVFieldTitle(selectorStr: string): Promise; /** * Checks if the Total ACV field title is visible * @return boolean * @param selectorStr CSS selector parameter */ isTotalACVFieldTitleVisible(selectorStr: string): Promise; /** * Checks if the Open ACV field title is visible * @return boolean * @param selectorStr CSS selector parameter */ isOpenACVFieldTitleVisible(selectorStr: string): Promise; /** * Checks if the Qtr Closed ACV field title is visible * @return boolean * @param selectorStr CSS selector parameter */ isQtrClosedACVFieldTitleVisible(selectorStr: string): Promise; /** * @param selectorStr CSS selector parameter */ waitForTotalACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; /** * @param selectorStr CSS selector parameter */ waitForOpenACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; /** * @param selectorStr CSS selector parameter */ waitForQtrClosedACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; /** * Represents the description or additional information about the metrics */ getDescriptionContent(): Promise<_FormattedRichText>; /** * Represents the value for Total ACV Closed to Date metric * @param selectorStr CSS selector parameter */ getTotalACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; /** * Represents the value for Open ACV metric * @param selectorStr CSS selector parameter */ getOpenACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; /** * Represents the value for ACV Closed Last Quarter metric * @param selectorStr CSS selector parameter */ getQtrClosedACVFieldValue(selectorStr: string): Promise<_GenCanvasFormattedNumber>; }