使用ChromeDriverManager(Python)从网页中提取文本



我需要得到这个页面上提出的核心问题,到目前为止,这是我使用的代码。问题是,它把我带到了"下一个问题",而不是预期的核心问题。

from selenium import webdriver
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options
chrome_options = Options()
chrome_options.add_argument("--window-size=1200,850")
driver = webdriver.Chrome(ChromeDriverManager().install())
url = 'http://ipaulgraham.herokuapp.com/'      
driver.get(url)
for i in driver.find_elements_by_xpath("//*[contains(text(), 'question')]"):
print(i.text)
--to next question

问题似乎在一个以question为id的div中。我想你可以做一些类似的事情:

from selenium.webdriver.common.by import By
element = browser.find_element(By.ID, "question")
print(element.text)

相关内容

  • 没有找到相关文章

最新更新