我对 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 编写代码?
问候,