Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够改变鼠标在硒中移动的速度。
我找到了DefaultSelenium类,但这不是静态的,我不知道如何使用它来设置单个 webdrivers 的延迟。
DefaultSelenium
谁能给我指出一个如何在 selenium 中设置执行速度的好例子,最好是在 c# 中。
简短的回答,你不能。WebDriver 没有提供管理它的内在方法。您可以通过使用Actions该类将单个鼠标移动分解为多个步骤来模拟这样的事情,在步骤之间暂停一小段时间。
Actions