Hi,
I am using Selenium Webdriver. I would like to execute my scripts in Opera browser.
I am using to the following code to open google page.
OperaProfile profile = new OperaProfile();
profile.preferences().set("User Prefs", "Ignroe Unrequested Popups", false);
DesiredCapabilities capabilities = DesiredCapabilities.opera();
capabilities.setCapability("opera.profile", profile);
WebDriver driver = new OperaDriver();
driver.get(“
https://www.google.co.in/ “);
However, It displayed “Connect to Debugger” window as displayed in the screenshot attached.
Selenium version:2.25
OS: Windows 7
Browser: Opera(12.01)
I would appreciate if someone helps me out.
Thanks
Ramesh Babu