如何摆脱硒中的特定异常?

时间:2012-02-01 15:39:39

标签: python selenium webdriver timeoutexception

我必须使用selenium作为我的项目。当我使用selenium时。我正在给出像这样的每一步

   time.sleep(6)

我给出了加载特定页面的足够间隔,但我仍然在某个时候面临以下错误。 大多数情况下我会得到像

这样的例外

常规例外:

   Exception: Message: u'Unable to locate element:   {"method":"xpath","selector":"//textarea[@style=\\"overflow-y: hidden; height: 50px; width:  300px;\\"]"}' ; Stacktrace: Method WebDriverError threw an error in    file:///tmp/tmpBxGp2P/extensions/fxdriver@googlecode.com/resource/modules/atoms.js 
   Traceback (most recent call last):
    File "crawl_optimize.py", line 206, in main
     word_query = browser.find_element_by_xpath('//textarea[@style="overflow-y: hidden; height: 50px; width: 300px;"]')
    File "/usr/local/lib/python2.6/dist-packages/selenium/webdriver/remote/webdriver.py", line 210, in find_element_by_xpath
     return self.find_element(by=By.XPATH, value=xpath)
    File "/usr/local/lib/python2.6/dist-packages/selenium/webdriver/remote/webdriver.py", line 643, in find_element
    {'using': by, 'value': value})['value']
   File "/usr/local/lib/python2.6/dist-packages/selenium/webdriver/remote/webdriver.py", line 153, in execute
    self.error_handler.check_response(response)
  File "/usr/local/lib/python2.6/dist-packages/selenium/webdriver/remote/errorhandler.py", l     ine 147, in check_response
     raise exception_class(message, screen, stacktrace)

由于WebDriverWait(),我也没有这样的实现错误。直到():

    NoSuchElementException: Message: u'Unable to locate element: {  "method":"xpath","selector":"//textarea[@style=\\"overflow-y: hidden; height: 50px; width: 300px;\\"]"}' ; Stacktrace: Method WebDriverError threw an error in   file:///tmp/tmpBxGp2P/extensions/fxdriver@googlecode.com/resource/modules/atoms.js 
  keyword : balance transfer ad pos : 2
  Exception: Message: None 
  Traceback (most recent call last):
    File "crawl_optimize.py", line 228, in main
     start_cpc,end_cpc = set_initial_cpc(initial_max_cpc,ad_position)
    File "crawl_optimize.py", line 95, in set_initial_cpc
    ep = crawl_position(cost)
   File "crawl_optimize.py", line 82, in crawl_position
    WebDriverWait(browser, 10).until(lambda driver :   driver.find_element_by_link_text(word.lower()))
   File "/usr/local/lib/python2.6/dist-packages/selenium/webdriver/support/wait.py", line 55, in until
    raise TimeoutException()
    TimeoutException: Message: None 

摆脱这些例外的方法是什么?

1 个答案:

答案 0 :(得分:0)

可能是两件事。

  1. 您的元素尚未在分配的6秒内完成加载
  2. 您的定位器格式错误。这看起来很可疑......

    {“method”:“xpath”,“selector”:“// textarea [@style = \”overflow-y:hidden;身高:50px;宽度:300px; \“]”}'

  3. 您是否可以检查定位器是否使用FireFinder返回您期望的内容?

    如果定位器没问题,您可以尝试使用WebDriverWait& ExpectedCondition确认页面已完成加载而不是赌博,您的页面将始终加载6s