/** * 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'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * Component that displays metadata information with optional icons and hyperlinks, and custom actions. * Selector: setup_platform_unifiedapp-relationship-viewer-tree-grid-provider * generated from JSON dist/applications/relationshipViewerTreeGridProvider.utam.json * @version 2026-03-09T13:56:34.933Z * @author Salesforce */ export default class RelationshipViewerTreeGridProvider extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that metadata container is present and visible * @return boolean */ isMetadataContainerVisible(): Promise; /** * Check that metadata hyperlink is present and visible * @return boolean */ isMetadataLinkVisible(): Promise; /** * Click the metadata hyperlink */ clickMetadataLink(): Promise; /** * Check that metadata text is present and visible * @return boolean */ isMetadataTextVisible(): Promise; /** * Returns true if element "metadataContainer" present on the page * @return boolean */ verifyMetadataContainerPresence(): Promise; /** * Returns true if element "metadataLink" present on the page * @return boolean */ verifyMetadataLinkPresence(): Promise; /** * Returns true if element "metadataText" present on the page * @return boolean */ verifyMetadataTextPresence(): Promise; /** * Represents the left icon if present */ getLeftIcon(): Promise<_Icon | null>; /** * Represents the right icon if present */ getRightIcon(): Promise<_Icon | null>; }