/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: lightning-record-picker-base-desktop * Represents the lightning-record-picker-base-desktop Lightning web component. * generated from JSON dist/lightning/recordPickerBaseDesktop.utam.json * @version 2026-03-09T13:56:36.225Z * @author Salesforce */ export default class RecordPickerBaseDesktop extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Type a text into the combobox input * @return none */ typeText(text: string): Promise; /** * Gets the input text * @return string */ getInputText(): Promise; /** * Performs click action on the suggestion item based on the record label * @return none */ pickSuggestionItemByLabel(text: string): Promise; /** * Gets the label of the item selected in the input * @return string */ getSelectionAsText(): Promise; /** * Waits for the record picker to be ready */ waitUntilReady(): Promise; }