/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _ListViewManager from 'salesforce-pageobjects/force/pageObjects/listViewManager'; import _MultiAddSearch from 'salesforce-pageobjects/force/pageObjects/multiAddSearch'; import _ActionButton from 'salesforce-pageobjects/force/pageObjects/actionButton'; /** * Selector: .modal-container * Represents the multi add page that contains listViewManager and multiAddSearch * You can retrieve the listViewManager, search component, description and footer buttons. * generated from JSON dist/force/multiAdd.utam.json * @version 2026-03-09T13:56:35.842Z * @author Salesforce */ export default class MultiAdd extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Gets the price book name in the header * @return the price book name in the header */ getPricebookNameInHeader(): Promise; /** * Gets the title in the header * @return the title in the header */ getTitleInHeader(): Promise; getListViewManager(): Promise<_ListViewManager>; getMultiAddSearch(): Promise<_MultiAddSearch>; getNextButton(titleString: string): Promise<_ActionButton>; getCloseButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }