/** * 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 _Label from 'salesforce-pageobjects/aura/pageObjects/label'; /** * Selector: .uiInputSelect. * Represents the ui:inputSelect Aura component. * Get an option by value, or get text from the element. * generated from JSON dist/aura/inputSelect.utam.json * @version 2026-03-09T13:56:35.001Z * @author Salesforce */ export default class InputSelect extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Click/Select option with value */ selectOptionByValue(text: string): Promise; /** * Click dropdown button */ clickDropDownButton(): Promise; /** * Get inputSelect element text * @return string */ getText(): Promise; getLabel(): Promise<_Label>; }