Net :: ReadTimeout(Net :: ReadTimeout)Selenium Ruby

前端之家收集整理的这篇文章主要介绍了Net :: ReadTimeout(Net :: ReadTimeout)Selenium Ruby前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我看到一些与Selenium中超时错误有关的帖子.这变得越来越难以忍受,因为它使我的测试包不可用.我正在测试目前正在开发的网页.

我有一个约300个测试场景的回归套件,一直工作,直到最新更新到Firefox和selenium webdriver.现在几乎每一个其他测试我得到:

Net :: ReadTimeout(Net :: ReadTimeout)错误.

这不可能是巧合.有人知道什么可能导致突然的超时问题?我已经尝试回到以前版本的webdriver和firefox.

解决方法

默认超时为60秒.有一件事是调整 internal timeout,看看是否修复它:
Capybara.register_driver :selenium do |app|
  profile = Selenium::WebDriver::Firefox::Profile.new
  client = Selenium::WebDriver::Remote::Http::Default.new
  client.timeout = 120 # instead of the default 60
  Capybara::Selenium::Driver.new(app,browser: :firefox,profile: profile,http_client: client)
end
原文链接:https://www.f2er.com/ruby/267437.html

猜你在找的Ruby相关文章