我想在Tinymce Editor中使用Cucumber和selenium驅動程序進行功能自動化測試的頁面中填寫文本。我能夠打開圖像對話框,但無法填寫它內部的文本字段。我知道TinyMce有嵌入的iframe標籤,其中包含其他html。 我用下面的步驟,但沒有奏效。fill_in in tinyMce
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
PFA圖像爲refrenece。
忘了提,但我使用的是Chrome。 – Milind 2013-02-26 07:55:19