我在Rails 3.1项目中有以下典型的黄瓜步骤:
... When I follow "Remove from cart" Then I should see "Test Product removed from cart"
困难在于“从购物车中删除”按钮是一个ajax:远程调用,它通过以下方式将“测试产品从购物车中删除”转移到#cart_notice元素:
$('#cart_notice').append("<%= @product.name %> removed from cart");
该功能在浏览器中正常工作,但在黄瓜中找不到“测试产品从购物车中删除”文本.我猜这是因为在AJAX返回之前,黄瓜正在搜索文本?
解决方法
要添加到dexter说的话,你可能想要编写一个在浏览器中执行JS的步骤,等待ajax请求完成.使用jQuery,我使用这一步:
When /^I wait for the ajax request to finish$/ do start_time = Time.now page.evaluate_script('jQuery.isReady&&jQuery.active==0').class.should_not eql(String) until page.evaluate_script('jQuery.isReady&&jQuery.active==0') or (start_time + 5.seconds) < Time.now do sleep 1 end end
然后,您可以根据需要或每个JavaScript步骤之后包括该步骤:
AfterStep('@javascript') do begin When 'I wait for the ajax request to finish' rescue end end
我有自动同步的问题,这清除了.