我正在尝试使用 rspec 2.10.0 + capybara 1.1.2 测试我的 rails 应用程序。这是我的测试文件
require 'spec_helper'
describe AdminPanelController do
describe "index" do
it "should have return code 200" do
visit '/admin'
page.should have_content "hello"
#response.status.should be(200)
end
end
end
这是测试结果
Failure/Error: page.should have_content "hello"
Capybara::ElementNotFound:
Unable to find xpath "/html"
我在谷歌上搜索了这个问题,但只找到了 webrat 可能是一个问题的信息,但是我没有安装这个 gem。感谢您的任何建议。