OperaProfile object and Selenium RC (C#)
问题 I'm try to use selenium-server-standalone-2.33.0.jar with opera and need to change some profile preferences. It possible to create OperaProfile object in C# project and using it like this: OperaProfile profile = new OperaProfile(); // Error: Type or namespace 'OperaProfile' could not be found profile.preferences().set("User Prefs", "Ignore Unrequested Popups", false); DesiredCapabilities capabilities = DesiredCapabilities.Opera(); capabilities.SetCapability("opera.profile", profile);