/** * 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, EditableUtamElement as _EditableUtamElement } from '@utam/core'; /** * Represents the force:splitViewListSelectableRecord Aura component. * Provides split view card functionality with selection checkbox and data fields. * generated from JSON dist/force/splitViewListSelectableRecord.utam.json * @version 2026-03-09T13:56:35.884Z * @author Salesforce */ declare class SplitViewListSelectableRecord 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; /** * Checks if the record selection checkbox is selected * @return true if checkbox is selected */ isCheckboxSelected(): Promise; /** * Toggles the selection checkbox state */ toggleCheckbox(): 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; /** * Checks if the selection checkbox is visible * @return true if checkbox is visible */ isCheckboxVisible(): Promise; getCardDataFields(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getCheckboxLabel(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getCheckboxSpan(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getCheckboxInput(): Promise<(_BaseUtamElement & _EditableUtamElement)>; getRecordLink(): Promise<(_BaseUtamElement & _ClickableUtamElement)>; getSplitViewCheckbox(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getListItem(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getFirstField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getSecondField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getThirdField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; getFourthField(): Promise<(_BaseUtamElement & _ActionableUtamElement)>; } export = SplitViewListSelectableRecord;