Questions tagged [operadriver]

WebDriver implementation developed by Opera Software

OperaDriver is a vendor-supported WebDriver implementation developed by Opera Software and volunteers that implements WebDriver for Opera.

OperaDriver can drive the browser running various tests on your web pages, just as if a real user was navigating through them. It can emulate actions like clicking links, entering text and submitting forms, and reports results back to you so you know your website works as intended.

23 questions
0
votes
2 answers

My selenium code throwing error while using opera browser for the first time

I am using opera version=91.0.4516.16 and operadriver version = 105.0.5195.102. I'm unable to opera browser with the simplest code also which is: from selenium import webdriver from selenium.webdriver.opera.options import Options s =…
Rajat
  • 11
  • 3
0
votes
1 answer

OperaChromiumDriver installation using OperaDriverManager for Ubuntu 18.04

I am simply trying to get a webscraper working in a Civis container script ( Linux (Ubuntu 18.04) environment). I've tried a variety of things but this is the closest I've got and have no clue how to resolve this error. It occurs regarless of what…
0
votes
2 answers

Unable to launch Opera using Python Selenium

I am trying to launch opera using python selenium libraries. But getting capabilities error. Codes I have tried: Code1: driver = webdriver.Opera() driver.get('https://www.google.com') Code2: driver = webdriver.Opera(r'path to…
0
votes
1 answer

How do you set up opera driver or any other driver in ubuntu after downloading the zip file?

I am new to automation, I am working on ubuntu OS, right now I have a couple of test cases in robot framework, I am trying to run them using opera browser, but I do not know how to install the driver after I downloaded the zip from here:…
Adrian Jimenez
  • 979
  • 9
  • 23
0
votes
1 answer

Can't start opera driver in selenium

My problem is this: I run the opera driver and get the following error. could you help me figure out how to deal with this? Opera version 62.0.3331.116 Opera driver version 75.0.3770.100 Selenium version…
0
votes
1 answer

OperaDriver for Selenium remains stuck when launching tests

I am using TestNG to run automated tests using a Selenium Java client. The tests are running fine on chrome and firefox but when I try to run the same on opera, I end up seeing tests timing out on the following console message: Starting OperaDriver…
0
votes
1 answer

Issues with handling SSL certiicates on Chrome, IE and Opera

As the title says it, I'm struggling with handling the SSL certificates in Chrome, IE and Opera browsers. What I'm doing: ChromeOptions opt = new ChromeOptions(); opt.AddAdditionalCapability(CapabilityType.AcceptSslCertificates, true); IWebDriver…
Cosmin
  • 2,354
  • 2
  • 22
  • 39
0
votes
0 answers

Working with multiple windows while using opera driver

I am using opera driver with opera version 12.11.The code I use for starting the opera is : if(UrlGenerator.BROWSER_NAME.equalsIgnoreCase("opera")){ DesiredCapabilities capabilities = new DesiredCapabilities(); …
Abhishek_Mishra
  • 4,551
  • 4
  • 25
  • 38
1
2