How can I completely avoid webdriver-manager?

后端 未结 3 573
闹比i
闹比i 2020-12-21 23:45

I\'m trying to use protractor for e2e tests in my Angular project. I previously installed selenium server and chromedriver in my path and it works fine for non-angular proje

相关标签:
3条回答
  • 2020-12-22 00:13

    you can use ng cli option: webdriver-update to make it not to execute webdriver update as following:

    ng e2e --webdriver-update=false

    But ng e2e uses the webdriver in local package not global package, I think you need a npm script to copy your pre-prepared webdriver to project local package before execute ng e2e --webdriver-update=false

    0 讨论(0)
  • 2020-12-22 00:14

    Download latest selenium standalone server and chromedriver from https://www.seleniumhq.org/download/

    Create a batch file

    java -Dselenium.LOGGER.level=WARNING -Dwebdriver.chrome.driver="C:/Program Files (x86)/Selenium/WebDrivers/ChromeDrivers/2.38/chromedriver.exe" -jar selenium-server-standalone-3.4.0.jar -port 4444
    

    specify the port,Chromedriver location and log level.

    Just run the batch file and now you have selenium server running.

    In your config file mention Selenium address 127.0.0.1:4444 or localhost

    0 讨论(0)
  • 2020-12-22 00:18

    I think best way is either go for selenium grid(Dockerized Selenium or Jar based grid . Other option is

    directConnect: true 
    

    in your protractor config file.

    0 讨论(0)
提交回复
热议问题