【问题标题】:Selenium Webdriver ruby upgrade (write_timeout error)Selenium Webdriver ruby​​ 升级(write_timeout 错误)
【发布时间】:2019-07-15 22:33:16
【问题描述】:

我正在尝试从 ruby​​ 2.4.4 升级到 ruby​​ 2.6.1,但我的支持 Javascript 的黄瓜测试都不起作用。运行黄瓜测试时出现以下错误:

      unknown keyword: write_timeout (ArgumentError)
      ./features/support/env.rb:58:in `block in <top (required)>'
      ./features/support/sign_in_step_helper.rb:4:in `sign_in'
      ./features/step_definitions/session_steps.rb:2:in `"I log in"'
      features/quote_wizard/quotes_wizard.feature:40:in `When I log in'

write_timeout 在整个项目的任何地方都不存在。

这就是我在features/support/env.rb 中的内容(自动生成的 cmets 被抑制):

require 'simplecov'
require 'cucumber/rails'
require 'capybara'
require 'capybara/dsl'
require 'capybara/cucumber'
require 'cucumber/rspec/doubles'
require 'selenium-webdriver'
require_relative './download_helper
SimpleCov.at_exit do
  puts 'Simplecov complete'
end

Capybara.default_max_wait_time = 5 

Capybara.register_driver :chrome do |app|
  options = Selenium::WebDriver::Chrome::Options.new(
    args: %w[no-sandbox disable-extensions headless] # Remove `headless` to view test runs in browser
  ) 
  options.add_argument('--window-size=1920,1080')
  options.add_preference(:download,
                         directory_upgrade:   true,
                         prompt_for_download: false,
                         default_directory:   DownloadHelper::DEFAULT_DIR)

  options.add_preference(:browser, set_download_behavior: { behavior: 'allow' })

  driver = Capybara::Selenium::Driver.new(app, browser: :chrome, options: options)

  bridge = driver.browser.send(:bridge)

  path = '/session/:session_id/chromium/send_command'
  path[':session_id'] = bridge.session_id

  bridge.http.call(:post,
                   path,
                   cmd:    'Page.setDownloadBehavior',
                   params: {
                     behavior:     'allow',
                     downloadPath: DownloadHelper::DEFAULT_DIR
                   })
  driver
end

Capybara.javascript_driver = :chrome

ActionController::Base.allow_rescue = false

:truncation instead.
begin
  DatabaseCleaner.strategy = :transaction
rescue NameError
  raise "You need to add database_cleaner to your Gemfile (in the :test group) if you wish to use it."
end

require 'constant_tables'
ConstantTables.load!
Cucumber::Rails::Database.javascript_strategy = :truncation, { except: ConstantTables.table_names }
World(FactoryBot::Syntax::Methods)

编辑:这是 Gemfile 的测试部分

group :development, :test do
  gem 'parallel_tests'
  gem 'site_prism'
  gem 'capybara-email'
  gem 'cucumber-rails', :require => false
  gem 'database_cleaner'
  gem 'factory_bot_rails'
  gem 'rspec-rails'
  gem 'rubocop-rails'
  gem 'rubocop-rspec'
  gem 'selenium-webdriver'
  gem 'shoulda'
  gem 'timecop'
  gem 'chronic'
  gem 'sinatra', '~> 2.0.0.rc2'
  gem 'simplecov', :require => false
  gem 'paratrooper', '3.0.2'
  gem 'platform-api', '2.0'
  gem 'activerecord-import'
  gem 'rb-readline'
end

【问题讨论】:

  • 你能分享你的 gemfile 吗?
  • 只是测试部分,您提到您的应用运行正常吗?

标签: ruby-on-rails ruby selenium selenium-webdriver cucumber


【解决方案1】:

我认为你应该升级你的宝石,看看这个:

webmock

他们专门添加了对 ruby​​ 2.6 的支持,也许值得一试?你检查过其他人吗?

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2012-07-31
    • 2016-04-05
    • 2015-08-26
    • 2017-04-11
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多