Error registering PhantomJS node in Selenium Grid

前端 未结 7 2083
情歌与酒
情歌与酒 2021-02-08 10:10

I have the following problem

  • I successfully launched Selenium Grid hub with:

java -jar selenium-server-standalone-2.53.0.jar -role hub<

7条回答
  •  一个人的身影
    2021-02-08 10:31

    Try replacing localhost with local IP

    phantomjs --webdriver=8090 --webdriver-selenium-grid-hub=http://localhost:4444

    with

    phantomjs --webdriver=8090 --webdriver-selenium-grid-hub=http://127.0.0.1:4444

提交回复
热议问题