0
내가 셀레늄을 사용하여 내 웹 애플리케이션에 대한 테스트 케이스를 작성하는 것을 시도하고, 내 개발 환경은 16.04 LTS 우분투에 설치 파이어 폭스와 파이썬 webdrivers 동안 파이어 폭스와 ububtu에 파이썬 webdriver 작동하지 않습니다하지만 난 예외를 얻고있다셀레늄은
여기
WebDriverException: Message: The browser appears to have exited before we could connect. If you specified a log_file in the FirefoxBinary constructor, check it for details.
여기 내 코드 블록
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get("http://www.python.org")
assert "Python" in driver.title
driver.close()
이다 완전한 예외 스택입니다 :
,536,913,632 10Traceback (most recent call last):
File "LoginLogout.py", line 4, in <module>
driver = webdriver.Firefox()
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/webdriver.py", line 80, in __init__
self.binary, timeout)
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/extension_connection.py", line 52, in __init__
self.binary.launch_browser(self.profile, timeout=timeout)
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_binary.py", line 68, in launch_browser
self._wait_until_connectable(timeout=timeout)
File "/usr/local/lib/python2.7/dist-packages/selenium/webdriver/firefox/firefox_binary.py", line 99, in _wait_until_connectable
"The browser appears to have exited "
selenium.common.exceptions.WebDriverException: Message: The browser appears to have exited before we could connect. If you specified a log_file in the FirefoxBinary constructor, check it for details.
나는 다음과 같은 환경 설정
모질라 파이어 폭스가 : 47.0
셀레늄 버전 : 2.53.6을
파이썬 버전 : 2.7.12
OS : Linux 4.4.0-31-generiC# 50-Ubuntu SMP x86_64
Firefox를 웹 드라이브 밖에서 정상적으로 실행할 수 있습니까? 크롬이나 IE 드라이버에서 발생합니까? – Leustad