Reputation: 39
Hi,
I have the below source. The driver is not able to click on the text area with the name "comment". Wondering if the span id has anything to do with this ! Any help would be much appreciated. Thanks.
<TD vAlign=top>
<TEXTAREA style="DISPLAY: none" class=textinput rows=10 cols=50 name=comment>
</TEXTAREA>
<SPAN id=_editor_toolbar>
Upvotes: 0
Views: 297
Reputation: 1978
If you want to interact with an element on the web page with webdriver, this element should become displayed first, while your textarea isn't: style="DISPLAY: none"
Upvotes: 4