我试图让我的规格在Docker中无头工作 – 它们在我的mac上本地运行正常但是当我在docker容器中运行它时我得到这个错误(重复多次)
Selenium::WebDriver::Error::JavascriptError:
arguments[0] is undefined
# [remote server] https://foobar.com/ line 68 > Function:1:1:in `anonymous'
# [remote server] https://foobar.com/:68:20:in `handleEvaluateEvent'
# ./spec/features/foo_spec.rb:15:in `block (2 levels) in required)>
Xvfb正在运行:Xvfb:99.0 -screen 0 1366x768x16
我也尝试过运行xvfb-run rspec并得到同样的错误.
spec_helper.rb:
Capybara.default_driver = :selenium
Capybara.javascript_driver = :selenium
发生了什么,这不能在docker中运行?
最佳答案
出现此错误的原因是:
原文链接:https://www.f2er.com/docker/436011.html>> webdriver.execute_script("return typeof arguments[0]","foo")
=> "undefined"
显然这是Firefox 35和webdriver的一个错误.它有一个问题 – https://code.google.com/p/selenium/issues/detail?id=8390.