我正在编写一个用Capybara填充文本字段的脚本,但在填写字段之前,我想确保字段为空并且文本未自动填充.基本上,我正在寻找相反的 (Object) fill_in(locator, options = {}) #empty_content_of? delete? 在
(Object) fill_in(locator, options = {}) #empty_content_of? delete?
在这里找到:http://rubydoc.info/github/jnicklas/capybara/master/Capybara/Node/Actions.建议?
在与此斗争之后,我问了一位同事,解决方案是使用以下内容:fill_in(locator, with: "")
所以,例如:
fill_in "Name", with: ""
这很有道理,对许多人来说可能是直观的,但是我很难过,无法在SO上找到答案所以我想我会发布它以防万一它可以帮助任何人.