/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: lightning-primitive-datatable-tooltip-bubble * Get the button to close a lightning-primitive-datatable-tooltip-bubble. * Get the list of messages within the bubble. * generated from JSON dist/lightning/primitiveDatatableTooltipBubble.utam.json * @version 2026-03-09T13:56:36.190Z * @author Salesforce */ export default class PrimitiveDatatableTooltipBubble extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks the leave button to discard edits to the list and leave the list view * Waits for the confirm modal to disappear */ clickCloseButton(): Promise; /** * Checks if error content contains a list of errors * @return boolean */ hasMultipleErrors(): Promise; getListItems(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)[]>; getListItemByIndex(index: number): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; }