/** * 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, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _ButtonMenu from 'salesforce-pageobjects/lightning/pageObjects/buttonMenu'; import _ActionRenderer from 'salesforce-pageobjects/action/pageObjects/actionRenderer'; /** * Selector: runtime_platform_actions-actions-ribbon * Represents the runtime_platform_actions-actions-ribbon Lightning web component. * Get the dropdown button or the action renderer by title. * generated from JSON dist/action/actionsRibbon.utam.json * @version 2026-03-09T13:56:34.802Z * @author Salesforce */ export default class ActionsRibbon extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the dropdown button associated with the actions ribbon * @return utam-lightning/pageObjects/buttonMenu */ getDropdownButton(): Promise<_ButtonMenu>; /** * Get the action renderer associated with the display label of the action * @return utam-action/pageObjects/actionRenderer */ getActionRendererWithTitle(titleString: string): Promise<_ActionRenderer>; getDropdownMenuText(): Promise<(_BaseUtamElement & _ClickableUtamElement)[]>; getViewStageRecommendationButton(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }