OperaOptions class doesn't work in Opera 34
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
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.