「Cannot call non W3C standard command while in W3C mode」を解決する
chromeとchromedriverを最新の75にアップデートしたら、capybaraのfeature specで以下のエラーが出るようになりました。
Failure/Error: Unable to infer file and line number from backtrace
Selenium::WebDriver::Error::UnknownCommandError:
unknown command: Cannot call non W3C standard command while in W3C mode
・・・なんのこっちゃい
調べてみると、v75からW3CモードがデフォルトONになったそうです
The most noticeable change is ChromeDriver now runs in W3C standard compliant mode by default. Other changes include:
Downloads - ChromeDriver - WebDriver for Chrome
解決策
今回、chromedriverのオプションにw3c: false
を追加することで解決できました。
Capybara.register_driver :headless_chrome do |app|
capabilities = Selenium::WebDriver::Remote::Capabilities.chrome(
chromeOptions: {
args: %w[headless disable-gpu window-size=1680,1050],
w3c: false
}
)
Capybara::Selenium::Driver.new(app, browser: :chrome, desired_capabilities: capabilities)
end
以上です
参考
Author And Source
この問題について(「Cannot call non W3C standard command while in W3C mode」を解決する), 我々は、より多くの情報をここで見つけました https://qiita.com/paranishian/items/17bd7a77dc953f8fbd63著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .