/** * 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 } from '@utam/core'; import _Input from 'salesforce-pageobjects/lightning/pageObjects/input'; import _PillInputWithAction from 'salesforce-pageobjects/es_property_editors/pageObjects/pillInputWithAction'; import _PillInput from 'salesforce-pageobjects/es_property_editors/pageObjects/pillInput'; /** * Component that displays an input field which can either be a simple text input or a pill input with optional action handling. * Selector: src-input-text-with-action * generated from JSON dist/es_property_editors/inputTextWithAction.utam.json * @version 2026-03-09T13:56:35.425Z * @author Salesforce */ export default class InputTextWithAction extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Check that input text property div is present and visible * @return boolean */ isInputTextPropertyVisible(): Promise; /** * Check that icon wrapper div is present and visible * @return boolean */ isIconWrapperVisible(): Promise; /** * Returns true if element "inputTextProperty" present on the page * @return boolean */ verifyInputTextPropertyPresence(): Promise; /** * Represents the Lightning input field */ getLightningInput(): Promise<_Input | null>; /** * Represents the screen responsive icon component */ getResponsiveIcon(): Promise<(_BaseUtamElement) | null>; /** * Represents the pill input with action component */ getPillInputWithAction(): Promise<_PillInputWithAction | null>; /** * Represents the pill input component */ getPillInput(): Promise<_PillInput | null>; }