gpt4 book ai didi

jquery - Selenium.click 对某些 anchor 元素不起作用

转载 作者:行者123 更新时间:2023-12-03 22:52:45 24 4
gpt4 key购买 nike

我正在开发的应用程序最近进行了改进,作为其中的一部分,引入了新的 JQuery 日历。我需要单击日历中的链接来选择时间和日期。但是,Selenium.click 不起作用。命令被执行,但屏幕上没有任何反应。

为了检查我的 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?

有人遇到过类似的问题吗?任何帮助,将不胜感激!!! Firebug screenshot

最佳答案

尝试 selenium.fireEvent(locater, 'click'),或使用与浏览器集成更紧密的 Selenium 2。

您可能会遇到与其他人相同的问题,例如。

Selenium clicks not working with GWT

Using Selenium to 'click' on non-input or non-control elements

它似乎与用Javascript添加的点击事件有关。

已编辑

我不知道您是否使用相同的日历实现,但我发现 fullcalendar.js jQuery 替换了 mouseover 事件,并且您必须首先触发该事件。我使用它来工作

selenium.runScript("jQuery(\"a:contains('" + NEW_EVENT_NAME
+ "')\").trigger('mouseover');jQuery(\"a:contains('"
+ NEW_EVENT_NAME + "')\").trigger('click')");

关于jquery - Selenium.click 对某些 anchor 元素不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6134708/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com