WebDriverWait可以工作,但是page_source仍然返回一半的HTML渲染图

问题描述 投票:0回答:1

我已阅读Wait Until Page is LoadedHow to use Selenium WaitExplicit Wait和其他文档,以等待页面加载然后开始抓取。等待成功通过,但是我仍然得到相同的一半/不完整的呈现HTML代码。

from selenium import webdriver
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.common.exceptions import TimeoutException

# prepare the option for the chrome driver
options = webdriver.ChromeOptions()
options.add_argument('headless')

# start chrome browser
browser = webdriver.Chrome(options=options,executable_path='C:/chromedriver_win32/chromedriver.exe')
browser.get('https://swappa.com/listing/view/LTNZ94446')

try:
    WebDriverWait(browser, 30).until(EC.presence_of_element_located((By.ID, "wrap")))
    print(browser.page_source)
except TimeoutException:
    print("not found")

为此,我的输出从一半开始而不是从顶部的<html>开始。

<div class="col-xs-6 col-sm-2 col-md-2">
                <div class="img-container" style="margin-bottom: 15px;">


                        <a href="https://static.swappa.com/media/listing/LTNZ94446/mhhHypyw.jpg" class="lightbox">
                            <img class="img-responsive" src="https://static.swappa.com/images/cache/7b/67/7b679a1d89816bc341a802f19f661eac.jpg" alt="Listing Image" style="margin:0px 0px 0px 0px; ">
                        </a>




                </div>
            </div>

我不确定哪里出了问题。

  • 显然可以看到元素ID的存在。 (<div id="wrap">),因为它不会引发超时错误
  • 我尝试使用元素的可见性,仍然没有运气
  • 也尝试过使用readystate,但没有运气。

[如果有办法使用其他库,例如BeautifulSoup / URLLib / URLlib2 / Scrapy,这些方法也将很有帮助

python selenium selenium-webdriver webdriverwait
1个回答
0
投票

您可以尝试使用JavascriptExecutor来存在元素。

也许您的答案是here

© www.soinside.com 2019 - 2024. All rights reserved.