是否有办法填充一个字段,看起来像这样…
<span id="you_cannot_see_me" style="display: none;">
<input id="hidey" name="hidey" type="text" value="">
</span>
I have try…
accessthis = find('#hidey').should_not be_visible
fill_in( accessthis , :with => 'desired text')
…并收到以下错误
Unable to find field false (Capybara::ElementNotFound)
任何想法?
使用Selenium,您不能与不可见的元素交互。Selenium用于模拟实际的用户交互,因此无法手动完成的任何操作都无法使用Selenium完成。