gpt4 book ai didi

java - 如何在依赖于另一个下拉列表的selenium下拉列表中添加显式等待?

转载 作者:行者123 更新时间:2023-11-30 02:39:20 26 4
gpt4 key购买 nike

如何使用 selenium 在下拉列表中添加显式等待,直到找到文本? UI

MY CODE

最佳答案

下面的代码将等待,直到指定的文本不存在。

    int i=0;

while(i==0)
{
try{
Select select = new Select(driver.findElement(By.xpath("ELEMENT_XPATH")));
select.getOptions().indexOf(0);
int ed = select.getOptions().indexOf(0);
if(ed==0); //check whether it's got your index or not(if not then it will throw error and go to Catch section)
{
System.out.println("Pass got.. Index Value");
}
i=1; //if it got your index value in drop down then .. exit from loop..
}catch(org.openqa.selenium.NoSuchElementException NSEE)
{
i=0; // iteration will continue until .. you'll not get your index in Drop down..
}
}

关于java - 如何在依赖于另一个下拉列表的selenium下拉列表中添加显式等待?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42246924/

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