本文介绍了如何在C#上使用Opera WebDriver提供Selenium WebDriver的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何使用Selenium WebDriver在c#上提供OperaWebDriver

How to provide OperaWebDriver on c# use Selenium WebDriver

  IWebDriver aDriver = new OperaDriver("path_to_operadriver.exe);

我有例外:

推荐答案

您必须下载 operachrome驱动程序.

以下是其工作方式的摘要:

Here's a snippet how it should work:

DesiredCapabilities capabilities = DesiredCapabilities.opera();
ChromeOptions options = new ChromeOptions();
options.setBinary("/path/to/opera");
capabilities.setCapability(ChromeOptions.CAPABILITY, options);

这篇关于如何在C#上使用Opera WebDriver提供Selenium WebDriver的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 07:36