私は、watin を使用して webapp の統合テストに取り組んでいます。webapp は、リッチテキスト コントロールの 1 つとして fckeditor を使用します。
これは、fckeditor を含む私の webapp のビューソースの html の一部です。
iframe id="ctl00_HeaderMain_txtSafetyNetDescription___Frame" src="/FCKEditor/editor/fckeditor.html?InstanceName=ctl00_HeaderMain_txtSafetyNetDescription&Toolbar=myApp" width="100%" height="200px" frameborder="no" scrolling="no" /iframe
watin スクリプトを使用すると、次のコードでフレーム オブジェクトを取得できます。
Frame frame = ie.Frame(Find.ById("ctl00_HeaderMain_txtSafetyNetDescription___Frame")) ;
ここで、fckeditor にテキストを書き込みたいと思います。しかし、フレームであるため、fckeditorに書き込む方法がわかりません。誰かがこれについて私を助けてくれますか?
ありがとう。アイアンガー。