有没有办法填写一个看起来像这样的字段......
<span id="you_cannot_see_me" style="display: none;">
<input id="hidey" name="hidey" type="text" value="">
</span>
我努力了...
accessthis = find('#hidey').should_not be_visible
fill_in( accessthis , :with => 'desired text')
...并收到以下错误
Unable to find field false (Capybara::ElementNotFound)
有任何想法吗?