我对selenium很新,需要双击标签(在搜索结果成功后显示)。 请帮忙。 enter image description here 附件是页面看起来像。
答案 0 :(得分:0)
您应该使用Actions()
课程,因为这包括双击'动作。
Actions action = new Actions(driver);
action.moveToElement(driver.findElement(By.xpath("//select[@id='groupselect']/@option[@value='942711']"))).doubleClick().build().perform();
OR
Actions action = new Actions(driver);
WebElement element=By.xpath("//select[@id='groupselect']/@option[@value='942711']"));
//Double click
action.doubleClick(element).perform();
//Mouse over
action.moveToElement(element).perform();
//Right Click
action.contextClick(element).perform();
希望它会对你有所帮助:)。