gpt4 book ai didi

java - 如何更快地调用下拉选择

转载 作者:行者123 更新时间:2023-12-02 01:53:46 27 4
gpt4 key购买 nike

在下拉列表中选择位置 200 时,最多需要 30 秒才能返回。如何更快地返回结果?

@FindBy(xpath = "//*[@id=\"searchCriteria\"]/table/tbody/tr[3]/td[2]/select/option[221]")
private WebElement fast;
ClickControl.click(fast);

最佳答案

使用 Select 类查找下拉列表。然后,您可以使用不同的方法(如 selectByValue、selectByVisibleText 或 SelectByIndex)在下拉列表中选择所需的值。这肯定会花费更少的时间。

Select drpdown = new Select(driver.findElement(By.xpath("xpath_of_your_element")));
drpdown.selectByVisibleText("abc");// selectByValue("123"),selectByIndex(1)

关于java - 如何更快地调用下拉选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57410777/

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