/** * 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 _Helptext from 'salesforce-pageobjects/lightning/pageObjects/helptext'; /** * Selector: lightning-textarea * Represents the lightning-textarea Lightning web component. * Get the field value and label text. Clear the field and enter text. * generated from JSON dist/lightning/textarea.utam.json * @version 2026-03-09T13:56:36.244Z * @author Salesforce */ export default class Textarea extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Clears field text and sets field value * @return string */ clearAndEnterText(text: string): Promise; /** * Get field text value * @return string */ getValue(): Promise; /** * Get label text value * @return string */ getLabelText(): Promise; /** * Is field text in focus * @return boolean */ hasFocus(): Promise; /** * Is field required * @return boolean */ isRequired(): Promise; /** * Is field read only * @return boolean */ isReadonly(): Promise; getHelptext(): Promise<_Helptext>; }