3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Chromeでunknown error: call function result missing 'value' となった場合、WebDriverを更新すると解決するかもしれない

Last updated at Posted at 2018-06-24

以前、CapybaraとSeleniumで簡単なスクレイピングのデモを作成した。

久しぶりに動かしたら、JavaScriptでスクロール処理実行時にRubyが実行時エラーとなって動かなかった。

出力されたエラー

unknown error: call function result missing 'value'

ChromeDriverのバージョン

$ /usr/local/bin/chromedriver --version
ChromeDriver 2.31.488774 (7e15618d1bf16df8bf0ecf2914ed1964a387ba0b)

WebDriverを更新したら直る

どうやら、 新しいChromeに対して古いWebDriverを利用していると実行時エラーになるようだった。

source: https://github.com/webdriverio/webdriverio/issues/2631

私の環境ではChromeDriverは、 /usr/local/bin/chromedriver にあったため、一度削除し最新版に更新した。
最新版のChromeDriverは http://chromedriver.chromium.org/downloads からダウンロードできる。

最新版に更新

2.40にバージョンアップすることで動作するようになった。

$ /usr/local/bin/chromedriver --version
ChromeDriver 2.40.565386 (45a059dc425e08165f9a10324bd1380cc13ca363)
3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?