Hi, I'm having a problem when trying to read a value (for example word "Hello") from textarea element in HTML browser application
<textarea id="txtReminder" rows="5"></textarea>
Textarea value is loaded from here:
<script type="text/javascript">
fsPageOnLoad:function(){contentPage.fsResultSet ={"reminder":"Hello"}}
When identifying element in Application Modeller I have chosen following:
ElementType=TextEdit(Web)
Web ID = txtReminder
Web Element Type = TEXTAREA
and highlighting this element works fine.
For Read stage properties in Object Studio I've chosen:
Data = Get Text
but this does not return the value "Hello" to me.
If I choose:
Data = Get Attribute
Attribute Name = "Web Value"
it does not work either, even when spying element (Browser mode) the result shows me:
Web ID = txtReminder
Web Element Type = TEXTAREA
Web Value = Hello
Thanks!