gpt4 book ai didi

c# - 在 selenium 和 c# 中移动物理鼠标指针

转载 作者:行者123 更新时间:2023-11-30 16:41:19 24 4
gpt4 key购买 nike

我需要移动物理鼠标指针。我正在使用 selenium 和 c#。

Actions action = new Actions(driver);
action.MoveByOffset(500, 500).ContextClick().Build().Perform();
//action.MoveToElement(element).ContextClick().Build().Perform();

MoveByOffset 和 MoveToElement 都在执行右键单击,但鼠标指针没有移动。

最佳答案

从Java角度回答

您不能使用Actions显示鼠标指针移动和执行任务类。

Java 文档 Actions Class 清楚地提到,虽然 Automation 通过 Selenium 您应该仅将 Actions 类用于模拟复杂的用户手势,而不是用于使用 Keyboard 或直接鼠标

直接与键盘鼠标交互,即生成 native 系统输入事件用于测试自动化 在需要控制鼠标键盘 的地方,您应该使用 Robot改为上课。

您可以在 Why do we need Robot class when we have Actions class in selenium 中找到详细的讨论

关于c# - 在 selenium 和 c# 中移动物理鼠标指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49506934/

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