Hi,
I am using WebAii / Telerik Testing Framework with C#.
I've run into an issue with a TextArea tag on my site.
I have issued the following code:
The field updates visually with the new message, let's say "Hello, world!"
However, when I go to save the issue, apparently the save feature I have will render the old display "TEXT".
This does not occur when I manually type in the Text Area.
Any help would be appreciated.
I am using WebAii / Telerik Testing Framework with C#.
I've run into an issue with a TextArea tag on my site.
1.<textarea id="msgBody" class="messageBody">TEXT</textarea>I have issued the following code:
1.public void enterMessageText(string message) {2. msgBodyTextArea.Text = message;3.}The field updates visually with the new message, let's say "Hello, world!"
1.<textarea id="msgBody" class="messageBody">Hello, world!</textarea>However, when I go to save the issue, apparently the save feature I have will render the old display "TEXT".
This does not occur when I manually type in the Text Area.
Any help would be appreciated.