C# OpenQA 和 OperaDriver() 问题。 selenium OpenQA v2.5 中没有 Opera
我正在尝试将 OperaDriver 用于硒。
IWebDriver wd = new OperaDriver();
但使用 OpenQA.Selenium.Opera;不存在。我在 C# dll 中找不到它。我正在使用 v2.5 驱动程序。 Chroom、Ie、Firefox 存在,但没有 Opera。我在哪里可以得到它?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.NET 绑定中没有本机 OperaDriver。 Opera 决定用 Java 实现他们的驱动程序,而不是实现 RemoteWebDriver JSON 有线协议。因此,从 .NET 使用 Opera 驱动程序的唯一方法是使用 .NET RemoteWebDriver 类以及独立 Java Selenium 服务器的实例,该服务器可在项目 下载页面。
There is no native OperaDriver in the .NET bindings. Opera decided to implement their driver in Java, and not to implement the RemoteWebDriver JSON wire protocol. As such the only way to use the Opera driver from .NET is to use the .NET RemoteWebDriver class, along with an instance of the standalone Java Selenium server, which is available on the project downloads page.
假设您使用的是 Windows:
Operadriver 是用 Java 编写的,不直接支持 C#,因为它不是由 Selenium 项目团队维护,而是由 Opera 维护。
要使用它,您必须在开始测试之前运行独立的 Selenium Web 服务器(从 Windows 上的控制台)。 在此处获取
您需要将 OPERA_PATH 设置为指向到您的 opera.exe 文件。使用以下命令启动服务器:
我使用一个小蝙蝠来完成这两个任务:
C#:
使用 C# 代码中的 remotewebdriver 对象进行测试以连接到它。
如果您想操作 Opera 客户端的配置文件(例如接受不受信任的证书等),您需要设置
将现有配置文件复制到您选择的位置,此处为 C:\OperaProfile。
==>避免所有路径中出现空格 <==
Assuming you are on Windows:
The Operadriver is written in Java and not suported directly in C#, as it is mainatined not by the Selenium project team but by Opera.
To use it, you have to run the standalone Selenium webserver (from console on windows) before starting the test. get it here
you need to set the OPERA_PATH to point to your opera.exe file. Start the server with the command:
i use a small bat for these two tasks:
C#:
testing with remotewebdriver object in your C# code to connect to it.
if you want to manipulate the profile of the opera client (e.g. to accept untrusted certificates etc) you need to set
Copy an existing Profile to a location of your choice, here C:\OperaProfile.
==> Avoid spaces in all the pathes <==