C# OpenQA 和 OperaDriver() 问题。 selenium OpenQA v2.5 中没有 Opera

发布于 2024-12-03 11:17:11 字数 204 浏览 2 评论 0 原文

我正在尝试将 OperaDriver 用于硒。

IWebDriver wd = new OperaDriver();

但使用 OpenQA.Selenium.Opera;不存在。我在 C# dll 中找不到它。我正在使用 v2.5 驱动程序。 Chroom、Ie、Firefox 存在,但没有 Opera。我在哪里可以得到它?

I am trying to use OperaDriver for selenium.

IWebDriver wd = new OperaDriver();

but using OpenQA.Selenium.Opera; does not exist. I can not find it in C# dll. I am using v2.5 drivers. Chroom, Ie, Firefox exist but no Opera. Where can i get it?

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

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

发布评论

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

评论(2

樱花坊 2024-12-10 11:17:11

.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.

混浊又暗下来 2024-12-10 11:17:11

假设您使用的是 Windows:

Operadriver 是用 Java 编写的,不直接支持 C#,因为它不是由 Selenium 项目团队维护,而是由 Opera 维护。

要使用它,您必须在开始测试之前运行独立的 Selenium Web 服务器(从 Windows 上的控制台)。 在此处获取

您需要将 OPERA_PATH 设置为指向到您的 opera.exe 文件。使用以下命令启动服务器:

java -jar selenium-server-standalone-2.33.0.jar 

我使用一个小蝙蝠来完成这两个任务:

SET OPERA_PATH="C:\Progra~2\Opera\opera.exe"
cd C:\pathToSeleniumJarFile
C:\Progra~2\Java\jre7\bin\java.exe -jar selenium-server-standalone-2.33.0.jar

C#:
使用 C# 代码中的 remotewebdriver 对象进行测试以连接到它。

        switch (WebBrowser)
        {
            case Browser.Chrome:
                // chromedriver.exe has to be in the debug folder
                ChromeOptions chrome = new ChromeOptions();
                chrome.AddArguments("--ignore-certificate-errors");
                webDriver = new ChromeDriver(chrome);
                break;

            ...

            case Browser.Opera:
                //note: set OPERA_PATH environment variable (in cmd or global)
                DesiredCapabilities opera = DesiredCapabilities.Opera();
                opera.SetCapability("opera.profile", @"C:\OperaProfile");
                webDriver = new RemoteWebDriver(opera);
                break;

            default:
                throw new NotImplementedException();

如果您想操作 Opera 客户端的配置文件(例如接受不受信任的证书等),您需要设置

opera.SetCapability("opera.profile", @"C:\OperaProfile");

将现有配置文件复制到您选择的位置,此处为 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:

java -jar selenium-server-standalone-2.33.0.jar 

i use a small bat for these two tasks:

SET OPERA_PATH="C:\Progra~2\Opera\opera.exe"
cd C:\pathToSeleniumJarFile
C:\Progra~2\Java\jre7\bin\java.exe -jar selenium-server-standalone-2.33.0.jar

C#:
testing with remotewebdriver object in your C# code to connect to it.

        switch (WebBrowser)
        {
            case Browser.Chrome:
                // chromedriver.exe has to be in the debug folder
                ChromeOptions chrome = new ChromeOptions();
                chrome.AddArguments("--ignore-certificate-errors");
                webDriver = new ChromeDriver(chrome);
                break;

            ...

            case Browser.Opera:
                //note: set OPERA_PATH environment variable (in cmd or global)
                DesiredCapabilities opera = DesiredCapabilities.Opera();
                opera.SetCapability("opera.profile", @"C:\OperaProfile");
                webDriver = new RemoteWebDriver(opera);
                break;

            default:
                throw new NotImplementedException();

if you want to manipulate the profile of the opera client (e.g. to accept untrusted certificates etc) you need to set

opera.SetCapability("opera.profile", @"C:\OperaProfile");

Copy an existing Profile to a location of your choice, here C:\OperaProfile.

==> Avoid spaces in all the pathes <==

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