要选择从一个值
DropDown,你必须先
Mouse Hover在
WebElement
ADD-ONS,然后选择
SpiceClub Membership Offer您可以使用下面的代码块:
WebElement elem = driver.findElement(By.xpath("//a[@id='highlight-addons']"));Actions action = new Actions(driver);action.moveToElement(elem).perform();List<WebElement> items = driver.findElements(By.xpath("//ul[@]/li/a"));for(WebElement myitem:items){ if(myitem.getAttribute("innerHTML").contains("Membership")) { myitem.click(); break; }}


