标题: 求助使用seleniumElement点击登录操作时NotVisibleException问题 [打印本页] 作者: onlyadi 时间: 2015-1-6 14:08 标题: 求助使用seleniumElement点击登录操作时NotVisibleException问题 使用xpath和ID定位,点击登录按钮,系统抛出错误:
org.openqa.selenium.ElementNotVisibleException: Element is not currently visible and so may not be interacted with
查看元素Displayed属性返回:
Element is not displayed!
使用网上的方法,调用js直接运行:
JavascriptExecutor j= (JavascriptExecutor)wd;
j.executeScript("document.getElementById('d_btnLogin').click() ");
虽然没有报错,但是浏览器并没有点击登录按钮,没有进行登录操作,仍然停留在登录界面,求指导,谢谢。