Adagio
8 years agoFrequent Contributor
How to Add/Delete/Read text to/from 'TextArea'
Hello,
Using TestComplete, I'm interacting with 'TextArea' object on the Web. What methods are available or can be used to Edit the Text /Remove the Text To/From this Object? would also like to fetch the current text populated in the TextArea.
Thank you
Abhi
I figured it out... using keys method I can actually enter the text value.
here's an example:
//to type the text 'Take it easy!' in a textarea
TextAreaObject.Keys("Take it easy!");
Thank you
Abhi