我與RSpec的測試像下面如何模擬按下回車鍵在Rspec的
describe "visitor do search" do
before do
fill_in "keyword", with: "London"
click_button "search_all"
end
it "should visit search result path" do
page.should have_selector('title', :text => "Search Result")
end
end
我想刪除按鈕「search_all」與事件改變它像按鍵盤通過輸入。
如何使用RSpec編寫代碼?
問候,
謝謝:)其驚人的作品! –