ブラウザを開かずに python selenium スクリプトを実行したい。rhel に xvfbwrapper-0.1.3 をインストールし、コードを編集しました。
from selenium import webdriver,selenium
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import Select
from selenium.common.exceptions import NoSuchElementException
import unittest, time
from xvfbwrapper import Xvfb
class SeleTry(unittest.TestCase):
def setUp(self):
try:
vdisplay = Xvfb(width=1280, height=720)
vdisplay.start()
self.driver = webdriver.Firefox()
self.driver.implicitly_wait(10)
.....//rest of the code//
私がそれを実行しようとしているときはいつでも、それはエラーを投げています:
'The browser appears to have exited before we could connect. The output was: Error: cannot open display: :1013\n'
私はそれに慣れていないので、私が間違っていることを理解していませんか?