我正在尝试使用 rspec 和 capybara 运行一个简单的测试:
describe "Create" do
visit new_client_path
page.should have_selector('h1', text: "New Client")
end
但是我得到错误:
undefined local variable or method `visit'
如果我删除访问行,我会收到此错误:
undefined local variable or method `page'
我已将 DSL 包含在spec_helper
文件中。
问题是什么?
谢谢