/** * 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, UtamBasePageObject as _UtamBasePageObject, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement } from '@utam/core'; /** * Represents the force:splitViewListRecord Aura component. * Provides split view card functionality without selection checkbox for read-only scenarios. * generated from JSON dist/force/splitViewListRecord.utam.json * @version 2026-03-09T13:56:35.881Z * @author Salesforce */ declare class SplitViewListRecord extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clicks on the record link to navigate to the record */ click(): Promise; /** * Gets the text of the first data field * @return the first field text */ getFirst(): Promise; /** * Gets the text of the second data field * @return the second field text */ getSecond(): Promise; /** * Gets the text of the third data field * @return the third field text */ getThird(): Promise; /** * Gets the text of the fourth data field * @return the fourth field text */ getFourth(): Promise; /** * Gets the record ID from the link data attribute * @return the record ID */ getRecordId(): Promise; /** * Gets text from all data fields * @return first field text */ getAllFieldTexts(): Promise; /** * Checks if this record is currently selected in the split view * @return true if record is selected */ isSelected(): Promise; /** * Gets the href URL of the record link * @return the href URL */ getHref(): Promise; /** * Checks if the record link is enabled and clickable * @return true if link is enabled */ isLinkEnabled(): Promise; getCardDataFields(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getRecordLink(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getListItem(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getFirstField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getSecondField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getThirdField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getFourthField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; } export = SplitViewListRecord;