gpt4 book ai didi

Python Selenium 查找元素 XPath 不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 21:43:51 25 4
gpt4 key购买 nike

我尝试在网页上查找刷新元素(时间分钟)。我的代码之前仅适用于简单文本。现在我使用 Ctrl+Shift+I 并指出我的元素和“复制 Xpath”

另外,我有 Chrome 扩展“XPath helper”,并尝试用它来做到这一点。 XPath 比我下面的代码更长。而且它也不起作用。

Error: NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//*[@id....

而且,我还尝试使用按类、按标签、按 CSS 选择器查找。它只能按标签工作,在不同的页面上并不完美。

我什至没有说打印它,有时 find_element(By.XPATH,'//*[...).text 工作,有时则不行。

我不明白,为什么它在一页上工作而不是在第二页上工作。我想稍后在 Flash 中通过 XPath 查找元素。

更新现在我重试代码并且它有效!但在下一个网页上仍然不起作用..为什么它如此多变? XPath 更改,当页面重新加载时还是什么?从 Chrome 浏览器中打开的 Flash 获取文本(引用)信息的最简单方法是什么?

import selenium
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
options = webdriver.ChromeOptions()
options.add_argument('headless')
driver = webdriver.Chrome(r"C:\Users\vishniakov\Desktop\python bj\driver\chromedriver.exe",chrome_options=options)
driver.get("https://www.betfair.com/sport/football/event?eventId=28935432")
print(driver.title)
elem =driver.find_element(By.XPATH,'//*[@id="yui_3_5_0_1_1538670363144_2571"]').text
print(elem)

最佳答案

这将适用于假设您想要该页面的数据而不是任何特定元素的数据:

import selenium
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.by import By
options = webdriver.ChromeOptions()
options.add_argument('headless')
driver = webdriver.Chrome(chrome_options=options)
driver.get("https://www.betfair.com/sport/football/event?eventId=28935730")
print(driver.title)
elem =driver.find_element(By.CSS_SELECTOR,'.scroller.context-event').text
print(elem)

关于Python Selenium 查找元素 XPath 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52651733/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com