/** * 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, ContainerCtor as _ContainerCtor, UtamBasePageObject as _UtamBasePageObject, BaseUtamElement as _BaseUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Selector: force-aura-action-wrapper. * Represents the force-aura-action-wrapper Lightning web component. * Get content or the email action link * generated from JSON dist/force/auraActionWrapper.utam.json * @version 2026-03-09T13:56:35.773Z * @author Salesforce */ export default class AuraActionWrapper extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getContainer(ContainerCtor: _ContainerCtor): Promise; getEmailAction(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; }