/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; /** * Selector: finderListView. * Represents the iOS view for the Einstein analytics dashboard. * Verify the dashboard and text widget label are loaded, and verify link action navigation. * generated from JSON dist/salesforceapp/record/analyticsDashboardiOS.utam.json * @version 2026-03-09T13:56:34.559Z * @author Salesforce */ declare class AnalyticsDashboardiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); switchTab(): Promise; hasBrokenWidgets(): Promise; getDashboardTitle(): Promise; hasTextWidgetWithLabel(label: string): Promise; clickTable(): Promise; clickTableCellWithLabel(label: string): Promise; clickLinkWidgetWithLabel(label: string): Promise; } export = AnalyticsDashboardiOS;