Webdriver exception: “chrome not reachable”

前端 未结 4 543
执念已碎
执念已碎 2020-12-10 06:56

I am running selenium test cases in a ubuntu server which basically runs testcases in both firefox and chrome. Firefox launches and test cases run successfully but chrome th

4条回答
  •  没有蜡笔的小新
    2020-12-10 07:44

    This would be because Chrome is also making use of unix containers in order to run. If you want this to run within docker, pass the docker run command

    --privileged

    Otherwise you can start Chrome with

    --no-sandbox

提交回复
热议问题