/** * 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 _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Selector: records-form-picklist * Represents the records-form-picklist Lightning web component. * Get lightning-picklist and lightning-button components * generated from JSON dist/records/formPicklist.utam.json * @version 2026-03-09T13:56:36.765Z * @author Salesforce */ export default class FormPicklist extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getPicklist(): Promise<_Picklist>; getEditDependencyPanel(): Promise<_Button>; }