gpt4 book ai didi

java - 如何通过 selenium 和 xpath 检索雅虎搜索自动建议

转载 作者:行者123 更新时间:2023-12-02 02:05:56 25 4
gpt4 key购买 nike

以下代码在 Xpath 中生成错误。 xpath 用于动态元素,我使用了 start-with。在运行代码之前我没有收到任何错误,但是在运行代码之后,Eclipse 会生成错误。请帮忙:

package com.TSOne.tcone;
import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;

public class YahooTextSearch {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "/Users/owner/desktop/chromedriver");
WebDriver driver = new ChromeDriver();
driver.get("http://www.yahoo.com");
driver.findElement(By.id("uh-search-box")).sendKeys("selen");
List<WebElement> list=driver.findElements(By.xpath("//*[starts-with(@id,'yui_3_18_0_3_1528696’)]"));
System.out.println(list.size());
}
}

最佳答案

至少要改变

//*[starts-with(@id,'yui_3_18_0_3_1528696’)]
^

//*[starts-with(@id,'yui_3_18_0_3_1528696')]
^

(将标记的单引号引号替换为单引号。)

如果您有其他问题,请跟进详细信息。请注意,//* 在 XPath 中通常是一个代价高昂的操作,尤其是在 Selenium 中[感谢有用的评论,@cruisepandey ] – 如果可能的话,指定元素名称可以避免潜在的性能问题。

关于java - 如何通过 selenium 和 xpath 检索雅虎搜索自动建议,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50807261/

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