selenium选择-按文本的一部分选择下拉选项
Select类具有3种不同的选项选择方法:
- selectByIndex
- selectByValue
- selectByVisibleText
现在,我遇到一种情况,我想通过一些 显示在选项可见文本之一中的文本来选择一个选项(不想让自己暴露在整个文本中)。
例如:
<option value="0" label="not-intresting">VERY-LONG-TEXT-THAT-I-NEED-TO-SELECT-DOLLAR</option>
我只想通过提供“ DOLLAR”来选择此选项,例如:
select.selectByPartOfVisibleText("DOLLAR")
您将如何有效地实施它?
回答:
您可以尝试这样的逻辑,希望对您有所帮助
List <WebElements> optionsInnerText= driver.findElements(By.tagName("option"));for(WebElement text: optionsInnerText){
String textContent = text.getAttribute("textContent");
if(textContent.toLowerCase.contains(expectedText.toLowerCase))
select.selectByPartOfVisibleText(expectedText);
}
}
以上是 selenium选择-按文本的一部分选择下拉选项 的全部内容, 来源链接: utcz.com/qa/405013.html