加载中…
个人资料
  • 博客等级:
  • 博客积分:
  • 博客访问:
  • 关注人气:
  • 获赠金笔:0支
  • 赠出金笔:0支
  • 荣誉徽章:
正文 字体大小:

Webdriver Element is not currently visible 解决方法

(2013-05-21 11:14:03)
标签:

element

visible

not

interacted

with

分类: 自动化测试AutomationTesting
Element is not currently visible and so may not be interacted with 解决方法
先看截图:
http://s9/mw690/505bf9afgdd320041cc08&690Element is not currently visible 解决方法" TITLE="Webdriver Element is not currently visible 解决方法" />
在Firebug中对应的html源码,见高亮显示。
http://s12/mw690/505bf9afgdd3200bbd91b&690Element is not currently visible 解决方法" TITLE="Webdriver Element is not currently visible 解决方法" />

如果用:
driver.findElement(By.className("cancelBtn")).click();
或 driver.findElement(By.id("save_btn")).click();
就会报“Element is not currently visible and so may not be interacted with”错误

解决方法:
思路: 使用 findElements遍历,input标签,然后找到share按钮对应的 索引值,然后再操作。
List<WebElement> element=driver.findElements(By.tagName("input"));
for(WebElement e:element)
{
System.out.println(e.getAttribute("id"));
}
element.get(78).click();
至此 问题解决。

问题更正: 此种问题的关键是在于用className和id都不唯一所以找不到对象,改为:
driver.findElement(By.xpath("//input[@value='Share']")).click();同样可以解决问题。

0

阅读 收藏 喜欢 打印举报/Report
  

新浪BLOG意见反馈留言板 欢迎批评指正

新浪简介 | About Sina | 广告服务 | 联系我们 | 招聘信息 | 网站律师 | SINA English | 产品答疑

新浪公司 版权所有