Selenium: Runtime.executionContextCreated has invalid 'context':

前端 未结 5 936
南方客
南方客 2021-01-04 09:11

I looked the similar question here Protractor / Selenium Webdriver : Runtime.executionContextCreated has invalid 'context' and here BUG-1473, but I cannot get the an

5条回答
  •  难免孤独
    2021-01-04 09:41

    You have to pass your chromedriver path to the Chrome() constructor

    path = '/path/to/chromedriver'
    
    driver = webdriver.Chrome(path)
    

    please let me know if it is fixed. Also it is advised to try with latest chromedriver and raise issue in case if any.

提交回复
热议问题