/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement, ActionableUtamElement as _ActionableUtamElement } from '@utam/core'; /** * Selector: .runtime_platform_actionsQuickActionWrapper. * Represents the runtime_platform_actionsQuickActionWrapper Aura component. * Get the header text. Get the Actions Panel in wrapper. Get a button by text. * generated from JSON dist/action/quickActionWrapper.utam.json * @version 2026-03-09T13:56:34.806Z * @author Salesforce */ export default class QuickActionWrapper extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getHeaderText(): Promise<(_BaseUtamElement)>; getQuickActionPanelContent(ContainerCtor: _ContainerCtor): Promise; getButtonByText(text: string): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; }