使用selenium爬取淘宝页面第三页时出现selenium.common.exceptions.ElementClickInterceptedException

在学习python爬虫时,使用selenium爬取天猫页面时,在爬取第三页时出现了错误。

错误为:

selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <span class="btn J_Submit" role="button" tabindex="0">...</span> is not clickable at point (834, 355). Other element would receive the click: <div class="row row-2 title">...</div>
  (Session info: chrome=78.0.3904.108)

代码:

try:
        url = 'https://s.taobao.com/search?q=' + quote(text)
        browser.get(url)
        if page > 1:
            input = wait.until(
                EC.presence_of_element_located((By.CSS_SELECTOR, '#mainsrp-pager div.form > input'))
            )
            submit = wait.until(
                EC.element_to_be_clickable((By.CSS_SELECTOR, '#mainsrp-pager div.form>span.btn.J_Submit'))
            )
            input.clear()
            input.send_keys(page)
            submit.click()          //我将其改成了submit.send_keys(Keys.ENTER)解决了这个问题
        wait.until(
            EC.text_to_be_present_in_element((By.CSS_SELECTOR,'#mainsrp-pager li.item.active > span'), str(page))
        )
        wait.until(
            EC.presence_of_element_located((By.CSS_SELECTOR, '.m-itemlist .items .item'))
        )
        get_products()
    except TimeoutException:
        index_page(page)

原因未知,若有知道的可以告诉一下。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值