/** * 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 _DynamicRelatedListWithResolvedFields from 'salesforce-pageobjects/lists/pageObjects/dynamicRelatedListWithResolvedFields'; import _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Selector: lst-dynamic-related-list-mobile * Represents the mobile-specific implementation of the dynamic related list component * Uses the resolved fields implementation for mobile-specific rendering * Handles mobile-specific UI layout and touch interactions * generated from JSON dist/lists/dynamicRelatedListMobile.utam.json * @version 2026-03-09T13:56:36.323Z * @author Salesforce */ export default class DynamicRelatedListMobile extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getDynamicRelatedListWithResolvedFields(): Promise<_DynamicRelatedListWithResolvedFields | null>; getShowMoreButton(): Promise<_Button | null>; }