Questions tagged [selenium-chromedriver]

Developed in collaboration with the Chromium team, ChromeDriver is a standalone server which implements WebDriver's wire protocol.

ChromeDriver is a standalone server which implements WebDriver's wire protocol.

The ChromeDriver consists of three separate pieces. There is the browser itself ("chrome"), the language bindings provided by the Selenium project ("the driver") and an executable downloaded from the Chromium project which acts as a bridge between "chrome" and the "driver". This executable is called "chromedriver".

ChromeDriver is available for Chrome on Android and Chrome on Desktop (Mac, Linux, Windows, and ChromeOS).

The ChromeDriver consists of three separate pieces. There is the browser itself ("chrome"), the language bindings provided by the Selenium project ("the driver") and an executable downloaded from the Chromium project which acts as a bridge between "chrome" and the "driver". This executable is called "chromedriver".

You can find the documentation for chromedrive here.

The latest version of chromedriver can be download from Google ChromeDriver's page.

You can find the necessary documentation for using chromedriver with Selenium on Selenium Wiki.

14388 questions
3
votes
1 answer

How to fix error Message: 'chromedriver.exe' executable may have wrong permissions

I'm installing webdriver of selenium. However I get a following error : PermissionError Traceback (most recent call last) /usr/local/lib/python3.6/dist-packages/selenium/webdriver/common/service.py in start(self) 75 …
3
votes
1 answer

VBA Selenium Chromedriver -- SetPreferences to turn off Save As dialog not working

So I've got this program that opens a PDF that I want to save. I thought I'd circumvented this SaveAs dialog box using SetPreferences, and yet here's the dialog box again. Anyone have any success getting SetPreferences to turn off the SaveAs dialog?…
Sean
  • 71
  • 2
  • 8
3
votes
3 answers

How to add Options through Facebook/php-webdriver?

I'm seeking to add options to an instance of Facebook/php-webdriver. This works to get the initial options: $options = \Facebook\WebDriver\Remote\DesiredCapabilities::chrome(); Now I'd like to add additional…
3
votes
3 answers

How to right click on a element and select a option in chrome browser in selenium

I am automating a page, where i want to right click a element and then click "Save link as.... I am able to right click on the element but not able to select any option. Below is the code I have written, but instead of selecting a option it actually…
3
votes
0 answers

Crawlera proxies not working with python selenium and Chrome Web driver

I have just bought a plan from crawlera for proxies and according to their documentation using polipo is not working for me and according to polipo site, it is outdated already. How Can I use crawlera proxies in Selenium and Chrome web driver. Here…
Mobasshir Bhuiya
  • 954
  • 6
  • 20
3
votes
2 answers

Check location of current chromedriver

I upgraded my chromedriver from v.2.35 to v.2.42. I have just downloaded v.2.42 and added to global path export PATH=$PATH:/usr/lib/chromedriver But when I enter in terminal chromedriver, I get Starting ChromeDriver 2.35.528139…
Maciej.O
  • 103
  • 1
  • 1
  • 7
3
votes
1 answer

driver.get buffer when access this mp4 url

dependencies version : chromedriver version is 2.41 selenium 3.14 my code : print("Access Video") driver.get("http://techslides.com/demos/sample-videos/small.mp4") print("finish") the video has been fully loaded but driver.get still buffer i…
Leka Baper
  • 183
  • 1
  • 4
  • 16
3
votes
2 answers

use .side file of Selenium IDE

Is there any way that we can directly use .side file or html file generated by Selenium IDE in eclipse instead of using export Code option for Java? I don't want to use the Export Code option rather want to find out the ways by which we can use the…
3
votes
1 answer

Intern Selenium error: BUG: suiteEnd was received for invalid session

I am trying to get functional testing working using Intern 4 by running a headless Chrome browser for testing. I believe everything is set up correctly and have recently installed selenium-server-standalone for Mac terminal. I am getting the…
3
votes
3 answers

multithreading: chromedriver does not open url in second window

Java code in thread function: System.setProperty("webdriver.chrome.driver", "/usr/bin/chromedriver"); ChromeOptions chromeOptions = new ChromeOptions(); chromeOptions.addArguments("--no-sandbox"); …
3
votes
3 answers

Selenium can't find elements even if they exist

I'm creating a simple selenium script to enter username and password to log in. Here is my code: driver =…
Kaushal28
  • 5,377
  • 5
  • 41
  • 72
3
votes
2 answers

Chrome driver times out trying to load the page in CI server, but works locally

I have my front end automation suite running in Selenium Cucumber and unfortunately the chrome driver is unable to locate the element. The server has network connections and I am able to ping the url from the CI server. [14:35:40][Step…
3
votes
3 answers

How to disable chrome notifications popup in python and selenium?

How to disable chrome notifications popup in python and selenium? I tried: chrome_options = webdriver.ChromeOptions() prefs = {"profile.default_content_setting_values.notifications" : 2} chrome_options.add_experimental_option("prefs",prefs) driver =…
3
votes
4 answers

Robot Framework - Docker - Chromedriver

I'm trying to setup a container to test with RobotFramework on chrome. But when I run my container I keep getting a WebDriverException. I've searched but couldn't find any fix that actually works for me. This is my Dockerfile FROM python:3 RUN…
3
votes
0 answers

File was not quarantined properly when trying to install chromedriver using brew

I have already tried to install via brew cask install chromedriver but I get this error: Error: /Library/Caches/Homebrew/downloads/42621d77ecaa889fa8ca73ac4b2a2228e3c1d11f20d84c6898e7645397d00f1d--chromedriver_mac64.zip was not quarantined…
Achmad Gozali
  • 49
  • 1
  • 3
1 2 3
99
100