/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: .uiPanel. * Represents the ui:Panel Aura component. * Get the title or check if a button is present by label. Click a button with a specific label. * generated from JSON dist/aura/mobilePanel.utam.json * @version 2026-03-09T13:56:35.014Z * @author Salesforce */ export default class MobilePanel extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get panel header title text * @return string */ getTitle(): Promise; /** * Check if a button is present by label * @return boolean[] */ hasButtonWithLabel(label: string): Promise; /** * Click header buttons with a specific label */ clickButtonWithLabel(label: string): Promise; getBodyContent(ContainerCtor: _ContainerCtor): Promise; }