/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _MenuItem from 'salesforce-pageobjects/aura/pageObjects/menuItem'; /** * Selector: .forceActionsDropDownMenuList. * Represents the force:actionsDropDownMenuList Aura component. * Get the force:actionButton, force:actionLabel or one:actionsDropDown components by label. * generated from JSON dist/force/actionsDropDownMenuList.utam.json * @version 2026-03-09T13:56:35.769Z * @author Salesforce */ export default class ActionsDropDownMenuList extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Waits for and gets the menu item with the specified text * @return the menu item (utam-aura/pageObjects/menuItem) */ getMenuItem(text: string): Promise<_MenuItem>; }