Cucumberとseleniumドライバーを使用した機能自動化テスト用のTinymceEditorを含むページにテキストを入力したい。画像ダイアログを開くことはできるが、その中のテキストフィールドに入力できない。TinyMceにIframeタグが埋め込まれていることを知っている。他のhtmlを保持します。以下の手順を使用しましたが、機能しません。
When /^I fill in the xpath "([^"]*)" with "([^"]*)"$/ do |xpath, value|
find(:xpath, xpath).set 'value'
end
と
When /^I fill in "([^"]*)" with "([^"]*)"$/ do |field, value|
fill_in(field, :with => value)
end
Unable to find xpath
refreneceの画像のPFAとしてエラーが発生します。