我在浏览器中打开了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元素列表。怎么可能?