operachromiumdriver icon indicating copy to clipboard operation
operachromiumdriver copied to clipboard

OperaOptions class doesn't work in Opera 34

Open eugene159 opened this issue 10 years ago • 1 comments

I'm trying to pre-configure "preferences" file for temporary profile that Opera web driver creates:

C#

OperaOptions options = new OperaOptions(); options.AddUserProfilePreference("turbo.enabled", true); options.AddUserProfilePreference("download.default_directory", "C:\Downloads"); OperaDriver driver = new OperaDriver(options); driver.Navigate().GoToUrl("http://www.google.com");

but preferences file is not affected by the code http://stackoverflow.com/questions/34254510/enable-opera-turbo-in-selenium-opera-webdriver

eugene159 avatar Dec 25 '15 22:12 eugene159

Did OperaOptions work for you with an earlier version? I've been able to get Opera 26 - 32 working using ChromeOptions with Java bindings, but as the author of issue #17, I've not been able to get 33+ working.

With Chrome options, I've only been able to setBinary and addArguments.

It appears Opera team has abandoned this project.

lkende avatar Feb 02 '16 16:02 lkende