/** * 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 _ListContent from 'salesforce-pageobjects/lists/pageObjects/listContent'; /** * Selector: .windowViewMode-normal .forceRelatedList.uiAbstractList. * Represents the Aura record card list component. * Access labels, fields, and open the record. * generated from JSON dist/lists/auraRecordCardList.utam.json * @version 2026-03-09T13:56:36.288Z * @author Salesforce */ export default class AuraRecordCardList extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the number of records * @return Integer value */ getRecordsCount(): Promise; /** * Returns a boolean value indicating whether the list is empty * @return boolean value */ isEmpty(): Promise; /** * Get the names of records. * @return List of string value */ getRecordNames(): Promise; getListContent(): Promise<_ListContent>; }