我在我的网站上有一个
页面,我正在尝试测试,要求
用户在继续操作之前在
页面上花费至少五秒钟.有没有办法让Capybara让我的Cucumber测试在该
页面上暂停并等待五秒钟,然后继续我描述的下一步?
我在步骤定义中有这个:
Given /^I wait for (\d+) seconds?$/ do |n|
sleep(n.to_i)
end
在您的功能中:
Given I am on the whatever page
And I wait for 5 seconds
And I follow "A Link"
# etc...
原文链接:https://www.f2er.com/ruby/269400.html