up vote 0 down vote favorite
share [g+] share [fb]

I could not figure out how to enter text into HTML Editor using Watin. I tried //ie.TextField(Find.ById("htmlDetail_ctl06_ctl04")).TypeText("ABCD"); But got error: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus.

Can you give some example how to enter text into AJAX HTML Editor using watin please? I am not sure what to plug in frameSrc and java script from this solution - Unit testing the MS AJAX Toolkit HTML editor

Here is html from Develper tool when click the text box:

<textarea class="ajax__htmleditor_htmlpanel_default" id="htmlDetail_ctl06_ctl04" style="width: 100%; display: none; height: 100%;" control="[object Object]"/>
link|improve this question
<textarea class="ajax__htmleditor_htmlpanel_default" id="htmlDetail_ctl06_ctl04" style="width: 100%; display: none; height: 100%;" control="[object Object]"/> – Shaki Aug 26 '09 at 15:52
feedback

2 Answers

Hope, it helps.

Link lnk = ie.Link(Find.ById("edButtonHTML"));
            ie.WaitForComplete();
            lnk.Click();
            ie.WaitForComplete();


ie.TextField(Find.ByName("content")).TypeText("I am Amit chadha");
            ie.WaitForComplete();
link|improve this answer
feedback

You can remove css or class using jQuery ( jquery-1.4.2.min.js ). like:

TextField notetext = iepopup.TextField(Find.ById("notetext"));  
  iepopup.Eval("$('#notetext').removeClass('note'); ");  
  iepopup.Eval("$('#notetext').css('display', 'block'); ");  
  notetext.Click();  
  notetext.TypeText(sNote);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown