/** * Text Area class */ export declare class TextArea { /** * To enter text in TextArea filed using the Field Name * * ```js * * TextArea.enterText("Project Name","Project_123"); * ``` * * @param {String} fieldLbl //Field Name of TextArea * @param {String} valueToEnter // Value you want to enter into the text area * */ static enterText(fieldLbl: string, valueToEnter: string): Promise; /** * To enter text in text Area using the placeholder attribute * * ``js * TextArea.enterTextUsingPlaceHolder("Enter Project Name","Project_123"); * ``` * * @param {String} placeholder // Text area placeholder * @param {String} valueToEnter //Value to enter into the textarea * */ static enterTextWithPlaceHolder(placeholder: string, valueToEnter: string): Promise; /** * To enter text in text area by passing locator * * ``js * TextArea.enterTextUsingLocator("//input[@id='emailID']","Project_123"); * ``` * * @param {String} locator located by xpath | CSS * @param {String} dataToFill //Value to enter into the textbox * */ static enterTextUsingLocator(locator: string, dataToFill: string): Promise; }