我使用Capybara和Minitest测试我的rails 4应用程序。我们有一个页面,我试图测试通过AJAX加载Google Map和colorbox。
我们需要确保在检查某个元素之前加载了AJAX,并且正在尝试遵循本教程: https://robots.thoughtbot.com/automatically-wait-for-ajax-with-capybara
大多数教程都使用Rspec,因此我将代码放在test_helper.rb
上:
class ActionDispatch::IntegrationTest
# Make the Capybara DSL available in all integration tests
include Capybara::DSL
include Warden::Test::Helpers
Warden.test_mode!
Capybara.default_max_wait_time = 5
Capybara.javascript_driver = :webkit
def wait_for_ajax
page.evaluate_script("jQuery.active") == 0
yield
end
end
通过其他收到错误的人来看,他们似乎没有安装capybara-webkit
gem。但是,我们这样做:
正在运行bundle install
:
...
Using capybara 2.5.0
Using capybara-webkit 1.7.1
以下是我未通过的测试:
test "colorbox should appear on pageload" do
visit trips_new_path
wait_for_ajax do
assert_selector "#colorbox", "colorbox not created on trips/new"
end
end
我收到错误:
Capybara::NotSupportedByDriverError: Capybara::NotSupportedByDriverError: Capybara::Driver::Base#evaluate_script
test/test_helper.rb:35:in `wait_for_ajax'
test/integration/trip_creation_test.rb:17:in `block in <class:TripCreationTest>'
我已尝试在几个不同的地方设置javascript,但似乎仍无效。
更新:尝试了其他语法并收到同样的错误:
def wait_for_ajax
Capybara.javascript_driver = :webkit
Timeout.timeout(Capybara.default_wait_time) do
loop until finished_all_ajax_requests?
end
end
def finished_all_ajax_requests?
page.evaluate_script('jQuery.active').zero?
end
提前感谢您的帮助!
答案 0 :(得分:3)
您收到NotSupportedByDriver错误的事实意味着您的测试实际上并未使用capybara-webkit驱动程序,并且可能仍在使用默认的racktest驱动程序。您需要指定特定测试应该使用支持JavaScript的驱动程序。如果您正在使用https://github.com/wojtekmach/minitest-capybara之类的内容,则可以查看宝石自述文件以查看如何手动指定它的示例,或设置以便您可以使用元数据标记测试。一旦你让测试实际上使用了正确的驱动程序,你可能会发现你实际上并不需要wait_for_ajax方法,因为Capybaras finders会自动等待内容出现。