protractor/selenium “could not find chromedriver at” (on Windows)

前端 未结 14 1843
感动是毒
感动是毒 2021-01-30 12:45

I installed protractor following this tutorial and when i use webdriver-manager update it says:

selenium standalone is up to date.
chromedriver is up to date.
         


        
14条回答
  •  北荒
    北荒 (楼主)
    2021-01-30 13:25

    If on Windows, you may need to set an HTTP_PROXY environment variable. Try these steps in your command prompt, assuming your proxy server is http://proxy.you.com:8080.

    1. SETX HTTP_PROXY http://proxy.you.com:8080 (It should return SUCCESS: Specified value was saved. You can also do this in System Properties...Advanced...Environment Variables)
    2. Close your command prompt window and reopen. (This ensures your new environment variable will be used in your session.)
    3. Now run your command: webdriver-manager update

提交回复
热议问题