다음을 수행하고 싶지만 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과 함께 사용하기 위해 정규식을 통해 필드를 찾는 가장 좋은 방법에 대한 아이디어가 있습니까?