您的位置:软件测试 > 开源软件测试 > 开源功能测试工具 > Selenium
Selenium之当鼠标悬浮时隐藏的元素才出现
作者:网络转载 发布时间:[ 2015/5/27 14:41:19 ] 推荐标签:功能测试工具

  在自动化过程中,有些导航按钮只有当鼠标悬浮在登录信息上时,它才能出现。这时候如果想要点击导航按钮直接用selenium的webDriver是无法定位的元素的,因为这些元素是隐藏的,只有鼠标悬浮时才出现,所以要记录一下,给大家一个参考
Actions action = new Actions(driver);
WebElement nav=driver.findElement(By.xpath("/html/body/div[1]/div/div[1]/div[2]/div/ul/li/a/span"));
//if found the link, then hover over the link to display the menu.
if(nav.isDisplayed()){
System.out.println("found=================");
action.moveToElement(nav).build().perform();
}
//        action.moveToElement(nav).moveByOffset(3, 3).build().perform();
//click the displayed menu
//        driver.findElement(By.xpath("/html/body/div[1]/div/div[1]/div[2]/div/ul/li/ul/li[2]/a")).click();
//click the logout menu via js
JavascriptExecutor js = (JavascriptExecutor) driver;
WebElement logout=driver.findElement(By.xpath("//a[contains(@href, '/GlobalDataTaxonomy/user/signout')]"));
//        String myjs="$('//a[contains(@href, '/GlobalDataTaxonomy/user/signout')]').click();";
js.executeScript("arguments[0].click();",logout);
driver.close();

软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd