Chromedriver 76 breaks my test suite “javascript error: circular reference”

前端 未结 4 675
隐瞒了意图╮
隐瞒了意图╮ 2021-01-20 10:14

I now get \"javascript error: circular reference(Session info: chrome=76.0.3809.100)\" whenever I try and click on any element on my company\'s webapp.

This is code

4条回答
  •  深忆病人
    2021-01-20 10:32

    As per Issue 2995: javascript error: circular reference with ChromeDriver Its fixed in Chrome/ChromeDriver version 76.0.3809.68 . Please try with 76.0.3809.68.

    Change logs :

    ChromeDriver 76.0.3809.68
    Supports Chrome version 76
    
    Includes the following changes over version 76.0.3809.25:
    Fixed a bug in detecting circular reference in JavaScript objects
    

    Edit

    There is issue with 'webdriver-manager' its not downloading the latest build of v76.0.0 . You will have to install it yourself issue - 408

    npm install chromedriver --chromedriver_version=LATEST
    

提交回复
热议问题