如何 "click" 使用 Selenium 在 Amazon 上自动建议某些建议?

How to "click" on certain proposal from autosuggestion on Amazon using Selenium?

我正在尝试自动完成 amazon.com 上的自动完成建议。但与 google 搜索选项不同,建议的 xpath 总是在变化。我发布的代码并不是每次都有效,因为有时所需建议的 xpath/id/cssselector 正在改变(@id=\"issDiv8\"] 有时它是 "issDiv4" 或 "issDiv6" 和等等。

WebElement searchTextField = driver.findElement(By.id("twotabsearchtextbox"));

searchTextField.sendKeys("turbo");

WebDriverWait wait = new WebDriverWait(driver, 20);

wait.until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.xpath("//*[@id=\"issDiv8\"]")));
List<WebElement> autoSuggest = driver.findElements(By.xpath("//*[@id=\"issDiv8\"]"));


System.out.println("Auto Suggest List ::" + autoSuggest.size());
for (int i = 0; i < autoSuggest.size(); i++) {
    System.out.println(autoSuggest.get(i).getText());
    if (autoSuggest.get(i).getText().equals("turbotax")) {
        autoSuggest.get(i).click();
        System.out.println("Success");

        break;

使用WebdriverWait处理动态元素,使用下面的xpath

WebDriverWait wait = new WebDriverWait(driver, 30);
WebElement element = wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//div[@data-keyword='turbotax']")));
element.click()