/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _ButtonIcon from 'salesforce-pageobjects/lightning/pageObjects/buttonIcon'; import _ButtonGroup from 'salesforce-pageobjects/lightning/pageObjects/buttonGroup'; import _ButtonIconStateful from 'salesforce-pageobjects/lightning/pageObjects/buttonIconStateful'; /** * Component that provides a button bar for various actions like refresh, inline editing, multi-column sorting, and secondary display options. * Selector: src-list-view-manager-button-bar * generated from JSON dist/lists/listViewManagerButtonBar.utam.json * @version 2026-03-09T13:56:36.342Z * @author Salesforce */ declare class ListViewManagerButtonBar extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check if the refresh button group is visible * @return boolean */ isRefreshButtonGroupVisible(): Promise; /** * Check if the multi-column sort button group is visible * @return boolean */ isMultiColumnSortButtonGroupVisible(): Promise; /** * Check if the inline edit button group is visible * @return boolean */ isInlineEditButtonGroupVisible(): Promise; /** * Returns true if element "refreshButtonGroup" present on the page * @return boolean */ verifyRefreshButtonGroupPresence(): Promise; /** * Returns true if element "multiColumnSortButtonGroup" present on the page * @return boolean */ verifyMultiColumnSortButtonGroupPresence(): Promise; /** * Returns true if element "inlineEditButtonGroup" present on the page * @return boolean */ verifyInlineEditButtonGroupPresence(): Promise; getButtonBarButtons(): Promise<_ButtonIcon[]>; /** * Represents the refresh button */ getRefreshButton(): Promise<_ButtonIcon | null>; /** * Represents the multi-column sort button */ getMultiColumnSortButton(): Promise<_ButtonIcon | null>; /** * Represents the inline edit button */ getInlineEditButton(): Promise<_ButtonIcon | null>; /** * Represents the group containing secondary display buttons */ getSecondaryDisplayButtons(): Promise<_ButtonGroup | null>; /** * Represents the secondary display buttons within their group */ getSecondaryDisplayButton(): Promise<_ButtonIconStateful[] | null>; } export = ListViewManagerButtonBar;