我想要做以下事情,但不能因爲fill_in的性質而期待locator作爲第一個參數。如何在水豚中使用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。
任何想法通過正則表達式找到一個字段的最佳方式與fill_in一起使用?
好男人,這就是一個。該特定字段用於不同的上下文(已驗證/未驗證),因此需要不同的字段ID。 donation_pledge_hundreds是字段ID的公用部分,因此比較字段名稱的末尾$ = – ants 2011-12-17 12:33:33