XPath 找不到元素

发布于 2025-01-11 21:43:51 字数 654 浏览 0 评论 0原文

我想从此页面抓取链接。 https://www.youtube.com/results?search_query=food+recepies

WebElement w1 = driver.findElement(By.xpath("//a[@id=\"video-title\"]"));
WebElement w2 = driver.findElement(By.xpath("//*a[@id='video-title']"));
WebElement w3 = driver.findElement(By.xpath("//a[@class='yt-simple-endpoint style-scope ytd-video-renderer']"));
WebElement w4 = driver.findElement(By.xpath("//h3/a"));

String link = w1.getAttribute("href");

这些都不适合我。

Error: Unable to locate element: //a[@id="video-title"]

I want to scrape links from this page.
https://www.youtube.com/results?search_query=food+recepies

WebElement w1 = driver.findElement(By.xpath("//a[@id=\"video-title\"]"));
WebElement w2 = driver.findElement(By.xpath("//*a[@id='video-title']"));
WebElement w3 = driver.findElement(By.xpath("//a[@class='yt-simple-endpoint style-scope ytd-video-renderer']"));
WebElement w4 = driver.findElement(By.xpath("//h3/a"));

String link = w1.getAttribute("href");

None of these works for me.

Error: Unable to locate element: //a[@id="video-title"]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

椒妓 2025-01-18 21:43:51

这应该适用于标题。

driver.findElement(By.xpath("//a[@id='video-title']"));

然而,其中有27个。因此,您可能想要使用

List<WebElement> plants = driver.findElements(By.xpath("//a[@id='video-title']"));

另一件事,您可能想要等到元素在页面上可见、启用、可单击等。为此,您需要执行以下操作:

WebElement firstResult = new WebDriverWait(driver, Duration.ofSeconds(10))
     .until(ExpectedConditions.elementToBeVisible(By.xpath("//a[@id='video-title']")));

This should work for the title.

driver.findElement(By.xpath("//a[@id='video-title']"));

However, there are 27 of them. So, you might want to use

List<WebElement> plants = driver.findElements(By.xpath("//a[@id='video-title']"));

Another thing is that you might want to wait until the elements are visible, enabled, clickable, etc., on the page. For this, you need to do something like the following:

WebElement firstResult = new WebDriverWait(driver, Duration.ofSeconds(10))
     .until(ExpectedConditions.elementToBeVisible(By.xpath("//a[@id='video-title']")));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文