我正在尝试设置Selenium服务器。它已经可以与Firefox和Chrome一起使用了,但我无法与Opera合作。
我使用的是php-webdriver(https://github.com/Element-34/php-webdriver)。当我尝试创建会话时,它会抛出PHPWebDriver_UnhandledWebDriverError异常,并显示消息'无法初始化类com.opera.core.systems.runner.launcher.OperaLauncherRunner'
$OperaDriver = new PHPWebDriver_WebDriver('http://localhost:4444/wd/hub');
$Session = $OperaDriver->session('opera'); //throws exception
我在本地运行(Windows 8.1)并且一切都是最新的。
这方面的文档不多,所以我找不到任何可能导致此问题的内容。
有什么想法吗?
由于