Selenium Webdriver:为什么找不到特定类的所有HTML元素?

时间:2019-05-18 23:13:08

标签: selenium web-scraping

我在浏览器中打开了https://www.themarker.com/law/1.7254050网页,看到12个元素具有“ cmt__title”类。

但是,当我运行以下代码时:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.add_argument('--ignore-certificate-errors')
options.add_argument('--incognito')
options.add_argument('--headless')
driver = webdriver.Chrome("/home/matan/chrome-driver/chromedriver", options=options)

driver.get("https://www.themarker.com/law/1.7254050")
titles = driver.find_elements_by_class_name('cmt__title')

print(titles)

我只有2个HTML元素列表。怎么可能?

0 个答案:

没有答案