Cucumber 如何将鼠标悬停在元素上?
我有一个带有 css 悬停样式的元素。
我尝试使用这个
page.execute_script(“$('#{selector}').mouseover();”)
但不起作用?
还有其他人在使用 css 悬停时遇到过这个问题吗?谢谢!
I have an element styled with a css hover.
I tried using this
page.execute_script(“$(‘#{selector}’).mouseover();”)
but does not work?
anyone else encountered this problem using a css hover? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
Try this one:
这是我的申请的步骤
Here is step from my application
或者,您可以调用绑定到该事件的函数
Alternatively, you coul call the function that is bound to that event
我使用了 .hover() 并且它有效。感谢您的回答!我最终不得不向元素添加一个“悬停”类
,并通过以下方式在 Cucumber 中触发它:
I used .hover() and it worked. Thanks for the answers!I ended up having to add a class 'hover' to the element
and trigger it in Cucumber by