/** * 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'; import _Picklist from 'salesforce-pageobjects/lightning/pageObjects/picklist'; import _FormPicklist from 'salesforce-pageobjects/records/pageObjects/formPicklist'; /** * Selector: records-record-picklist. * Represents the records-record-picklist Lightning web component. * Access the form picklist or get the base picklist. * generated from JSON dist/records/recordPicklist.utam.json * @version 2026-03-09T13:56:36.820Z * @author Salesforce */ export default class RecordPicklist extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get the base picklist * @return picklist */ getBasePicklist(): Promise<_Picklist>; getFormPicklist(): Promise<_FormPicklist>; }