您可以尝试这样的逻辑,希望对您有所帮助
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); }}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)