使用webdrivermanager无法找到Opera二进制错误selenium + java

时间:2019-07-02 11:56:27

标签: selenium-webdriver webdrivermanager-java

在Eclipse中运行以下程序时,出现错误“ 找不到Opera二进制文件”。

print "$1" and exit if m/([a-z]o)/

enter image description here 如何解决此问题,请帮忙。

1 个答案:

答案 0 :(得分:0)

尝试指定Opera启动器二进制文件的路径:

    String operaBinary = "C:\\Program Files\\Opera\\launcher.exe"; // If Windows
    WebDriverManager.operadriver().setup();
    OperaOptions options = new OperaOptions();
    options.setBinary(operaBinary);
    WebDriver driver = new OperaDriver(options);

    // ...