Error: cannot open display: :0 for Selenium tests

前端 未结 2 1222
遇见更好的自我
遇见更好的自我 2021-01-24 14:21

Firstly I was getting the following error:

org.openqa.selenium.firefox.NotConnectedException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Fi         


        
2条回答
  •  情歌与酒
    2021-01-24 14:37

    The best approach to solve this problem is making changes to the jenkins start script.

    The solution that works on Ubuntu for me correctly is as follows:

    1.Open Jenkins shell script located at: /etc/init.d/jenkins.

    2.Add the following lines as follows before PATH variable:

    /usr/bin/X :0 vt7 -ac
    export DISPLAY=:0
    xhost +
    

提交回复
热议问题