1. ホーム
  2. java

[解決済み] org.openqa.selenium.WebDriverException: 不明なエラー:コール関数の結果に 'value' がない。

2022-02-05 21:23:24

質問

Sendkeysが機能しない。この問題を解決するために私を助けてください。

WebElement username = driver.findElement(By.xpath("//*[@id='username']"));      
username.sendKeys("123456");

コンソールです。

Exception in thread "main" org.openqa.selenium.WebDriverException: unknown error: call function result missing 'value'

  (Session info: chrome=65.0.3325.31)
  (Driver info: chromedriver=2.33.506120 (e3e53437346286c0bc2d2dc9aa4915ba81d9023f),platform=Windows NT 6.1.7601 SP1 x86) 
(WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 0 milliseconds

Build info: version: '3.8.1', revision: '6e95a6684b', time: '2017-12-01T19:05:32.194Z'
System info: host: 'NEW-PC', ip: '192.168.0.103', os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_161'

ドライバー情報です。

org.openqa.selenium.chrome.ChromeDriver

Capabilities {acceptSslCerts: true, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.33.506120 (e3e53437346286..., userDataDir: C:\Users\NEW\AppData\Local\...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 65.0.3325.31, webStorageEnabled: true}

解決方法は?

私も同じ問題を見ました。この問題は、Chrome 65(現在:dev channel)を使用したときのみ表示されます。Chrome 64 (stable channel と beta channel の両方) ではすべて正常に動作しました。

古いクロメドライバをインストールしていたことが判明しました。具体的には、私は chrome=65.0.3325.51chromedriver=2.29.461585 . 実行中 npm install -g chromedriver chromedriverを2.35.528157にバンプしたら、問題が解決しました。これが助けになることを願っています。

TL;DR : 実行 npm install -g chromedriver