Forum Discussion

Adagio's avatar
Adagio
Frequent Contributor
7 years ago
Solved

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 fetc...
  • Adagio's avatar
    Adagio
    7 years ago

    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