/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject, ActionableUtamElement as _ActionableUtamElement, TouchableUtamElement as _TouchableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; import _SearchBar from 'salesforce-pageobjects/salesforceapp/pageObjects/navigation/searchBar'; /** * Selector: XCUIElementTypeWindow[$name == 'search.rootView'$]. * Represents the iOS object home window. * Find a list or record and navigate to it, or verify records are still syncing. * generated from JSON dist/salesforceapp/record/objectHomeNoListiOS.utam.json * @version 2026-03-09T13:56:34.611Z * @author Salesforce */ declare class ObjectHomeNoListiOS extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); clickRecord(title: string): Promise; hasRecord(title: string): Promise; hasRecordWithChangesToBeSynced(): Promise; pullToRefresh(): Promise; getRoot(): Promise<(_BaseUtamElement & _ActionableUtamElement & _TouchableUtamElement)>; getRecordCards(): Promise<(_BaseUtamElement & _ClickableUtamElement)[]>; getSearchBar(): Promise<_SearchBar>; } export = ObjectHomeNoListiOS;