要检查我的XPATH / CSS定位器(我试过两者)是否正确,我添加了selenium.getText(locator)和selenium.highlight(locator)命令.两个都工作!没问题.它只有点击不起作用.
在检查firebug后,我可以看到我试图点击的div是一种变灰状态.这是否意味着该元素被禁用?请参阅下面的firebug屏幕截图.
我还尝试在Selenium IDE中运行相同的命令.在IDE中,这有时“有时”.
我正在使用Selenium 1.xx运行此测试.
更新:
I did one more thing as part of
debugging. During the test run,I
opened the Selenium IDE in the browser
so that it records what actions are
happening. IDE recorded all actions
till this click. But I Couldn’t see
anything in the IDE when the click
command was executed. Any idea guys,
what would be cause?
以前有人遇到过类似的问题吗?任何帮助,将不胜感激!!!
解决方法
您可能遇到与其他人相同的问题,例如.
Selenium clicks not working with GWT
Using Selenium to ‘click’ on non-input or non-control elements
它似乎与使用Javascript添加的点击事件有关.
编辑
我不知道你是否使用相同的日历实现,但我发现fullcalendar.js jQuery one替换了mouSEOver事件,你必须首先触发它.我让它使用
selenium.runScript("jQuery(\"a:contains('" + NEW_EVENT_NAME + "')\").trigger('mouSEOver');jQuery(\"a:contains('" + NEW_EVENT_NAME + "')\").trigger('click')");
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。