/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _MobileHomeCardList from 'salesforce-pageobjects/salesforceapp/pageObjects/mcfmobilehome/mobileHomeCardList'; /** * Represents the Mobile Home fragment in the Salesforce app. * Provides methods to open the Mobile Home editor and access the Mobile Home card list. * Typical usage scenarios include: * • Opening the editor to customize cards using editHome * • Accessing the card list component using getMobileHomeCardList * • Checking whether the Edit button is available using hasEditButton * • Waiting for the card list to be ready using waitForCardListToLoad * generated from JSON dist/salesforceapp/mcfmobilehome/mobileHome.utam.json * @version 2026-03-09T13:56:34.249Z * @author Salesforce */ export default class MobileHome extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Open the mobile home editor. */ editHome(): Promise; /** * Get the mobile home card list component. */ getMobileHomeCardList(): Promise<_MobileHomeCardList>; /** * Check whether the Edit button is present. */ hasEditButton(): Promise; /** * Wait for the card list to be present on the page. */ waitForCardListToLoad(): Promise; }