最佳答案
我想执行下面的操作,但是由于 fill _ in 的特性,我无法将定位符作为第一个参数。
find(:css, "input[id$='donation_pledge_hundreds']").fill_in :with => "10"
我也试过
element = find(:css, "input[id$='donation_pledge_hundreds']")
fill_in element.<method> , :with => "10"
但是没有方法返回任何数据来标识要填充的元素。
对于通过正则表达式查找与 fill _ in 一起使用的字段的最佳方法有什么想法吗?