python3.6+selenium+phantomJS 网页爬虫报错NoSuchElementException问题及解决方法

错误信息:

selenium.common.exceptions.NoSuchElementException: Message: {"errorMessage":"Unable to find element with xpath '//*[@id='**']'","request":{"headers":{"Accept":"application/json",...}}
Screenshot: available via screen
由于代码换用Chrome浏览器是正常执行的,所以个人认为原因是由于使用phantomJS后,动态JS还没有解析,没有获取到网页代码 ,所以才会报NoSuchElementException

所以写一个方法等JS解析就行了

代码如下:

# JS
def wait(driver):
    elem = driver.find_element_by_tag_name('html')
    count = 0
    while True:
        count +=1
        if count>20:
            print('timeout')
            return
        time.sleep(5)
        try:
            elem == driver.find_element_by_tag_name('html')
        except StaleElementReferenceException:
            return
在报错的语句前使用wait(driver)

你可能感兴趣的:(python)