我在使用Pyvirtualdisplay让Webdriver无法在特定的集线器上运行时遇到了一些麻烦。以下通用代码可以正常工作:
class TestHub4444TestClass01(unittest.TestCase):
def setUp(self):
self.display = Display(visible=0, size=(1920, 1080))
self.display.start()
self.driver = firefox.webdriver.WebDriver()
def test_hub_4444_test_case_01(self):
self.driver.get('http://google.com')
time.sleep(5)
def tearDown(self):
self.driver.close()
self.display.stop()
if __name__ == "__main__":
unittest.main()
但是,当我尝试将Webdriver分配到端口4445上的集线器时,以下打开一个borwser窗口。
class TestHub4445TestClass01(unittest.TestCase):
def setUp(self):
self.display = Display(visible=0, size=(1920, 1080))
self.display.start()
self.driver = WebDriver(command_executor='http://localhost:4445/wd/hub',
desired_capabilities={"browserName": "firefox",
"platform": "LINUX"})
def test_hub_4445_test_case_01(self):
self.driver.get('http://google.com')
time.sleep(5)
def tearDown(self):
self.driver.close()
self.display.stop()
if __name__ == "__main__":
unittest.main()
即使您不确定答案,也会非常感谢任何建议,我会给他们一个机会。
答案 0 :(得分:0)
如果其他人收到类似
的内容WebDriverException: Message: u'Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output:\nError: cannot open display: :99\nError:
这是我在Ubuntu中的命令。我去了我的xvfb控制脚本。
sudo ./xvfb
export DISPLAY=:99
java -jar selenium-server-standalone-2.37.0.jar -role node -hub http://localhost:4445/grid/register -port 5560
我的xvfb脚本与我的selenium服务器jar位于同一个地方。这是我的xvfb脚本。
PIDFILE=/var/run/xvfb.pid
case "$1" in
start)
echo -n "Starting virtual X frame buffer: Xvfb"
exec start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
echo "."
;;
stop)
echo -n "Stopping virtual X frame buffer: Xvfb"
exec start-stop-daemon --stop --quiet --pidfile $PIDFILE
echo "."
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
exit 1
esac
exit 0