Selenium - 单击仅当悬停在其上方时才出现的隐藏按钮

发布于 2024-10-28 13:52:01 字数 327 浏览 1 评论 0原文

我正在尝试使用 Java 在 Eclipse 中运行一些自动化测试(将它们作为 JUnit 测试运行),并且我正在使用 Firefox 的 Selenium IDE 1.0.10 插件来查找按钮 ID。问题是,在网页上,我在一行上有一个隐藏按钮,只有将鼠标悬停在其上方时才可见。如果我单击该按钮,Selenium 会注册该单击,但如果我尝试运行测试用例,它会在该单击处停止,因为该按钮仅在鼠标悬停在其上时才可见。有没有办法,Selenium 中的“鼠标悬停”命令或使按钮在单击之前可见的命令?如果您需要更多信息,请询问,我将尽我所能提供一切。我不知道还需要什么,因为我对 Java 和 Selenium 都很陌生。

谢谢你!

I am attempting to run some automated tests in Eclipse using Java (running them as JUnit tests) and I'm using Selenium IDE 1.0.10 plugin for Firefox in order to find the button IDs. The problem is that on the webpage, I have a hidden button on a row that becomes visible only when hovering above it. If I click on the button, Selenium registers the click, but if I attempt to run the test case, it stops at that click, since the button is only visible when the mouse hovers over it. Is there a way, a command in Selenium for "mouse hover" or something that makes the button visible before clicking it? If you need more information, please ask and I will provide everything I can. I don't know what else is needed since I'm pretty new at both Java and Selenium.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

庆幸我还是我 2024-11-04 13:52:01

尝试:

selenium.mouseOver(“mylocator”);

Try:

selenium.mouseOver("mylocator");

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文