无法捕获异常

时间:2014-12-22 02:53:25

标签: python exception selenium selenium-webdriver

所以我试图捕获Webdriver异常,并且不希望它的回溯污染我的日志。这是代码的一点

from selenium.common.exceptions import TimeoutException, WebDriverException

try:
    WebDriverWait(driver, 10).until(
        EC.presence_of_element_located((By.CSS_SELECTOR, '.loading')))
except TimeoutException:
    log.msg("Seneium Timeout: {}".format(response.url))
except WebDriverException as e:
    log.msg("Selenium Exception: {0} Message: {1}".format("my message", str(e)))
finally:
    driver.quit()

但我还是得到了这些:

 <full traceback here>
 selenium.common.exceptions.WebDriverException: Message: Can not connect to GhostDriver

我做错了什么?

2 个答案:

答案 0 :(得分:6)

初始化try/except实例时,会在WebDriver块之外引发异常:

driver = webdriver.PhantomJS()

仅供参考,在使用PhantomJS启动GhostDriver时会发生这种情况,引自source code

def start(self):
    """
    Starts PhantomJS with GhostDriver.

    :Exceptions:
     - WebDriverException : Raised either when it can't start the service
       or when it can't connect to the service
    """
    try:
        self.process = subprocess.Popen(self.service_args, stdin=subprocess.PIPE,
                                        close_fds=platform.system() != 'Windows',
                                        stdout=self._log, stderr=self._log)

    except Exception as e:
        raise WebDriverException("Unable to start phantomjs with ghostdriver.", e)
    count = 0
    while not utils.is_connectable(self.port):
        count += 1
        time.sleep(1)
        if count == 30:
             raise WebDriverException("Can not connect to GhostDriver")

并且start()called in WebDriver's constructor (__init__() method)

换句话说,它启动服务,但无法连接到它。

答案 1 :(得分:0)

你可以试试 - ElementClickInterceptedException

相关问题