Selenium - 高级用户交互

发布于 2024-11-16 14:38:04 字数 88 浏览 0 评论 0原文

我怎样才能在 C# 中使用 AdvancedUserInteractions 和 Selenium 2。我收到命名空间丢失错误。我应该添加任何 .dll 文件吗?

How can I be able to use AdvancedUserInteractions in C# with Selenium 2. I am getting namespace missing error. Should I add any .dll file?

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

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

发布评论

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

评论(2

高跟鞋的旋律 2024-11-23 14:38:04

在您的 using 部分中添加此命名空间:

using OpenQA.Selenium.Interactions;

然后,您将可以访问 Action 类。喜欢:

        var zoomLevel = driver.FindElement(By.Id("navZoomInSlider"));

        Actions action = new Actions(driver);
        action.DoubleClick(zoomLevel);
        action.Build();
        action.Perform();

Add this namespace in your using section:

using OpenQA.Selenium.Interactions;

Then, you will have access to the Action class. Like:

        var zoomLevel = driver.FindElement(By.Id("navZoomInSlider"));

        Actions action = new Actions(driver);
        action.DoubleClick(zoomLevel);
        action.Build();
        action.Perform();
怀中猫帐中妖 2024-11-23 14:38:04

它可能与​​此有关。

It could be related to this.

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