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
2 answers

Timed out receiving message from renderer: 10.000

I am getting following error when running my scenarios. org.openqa.selenium.TimeoutException: timeout: Timed out receiving message from renderer: 10.000 (Session info: chrome=79.0.3945.79) Build info: version: '3.14.0', revision: 'aacccce0',…
Matthewek
  • 1,519
  • 2
  • 22
  • 42
3
votes
0 answers

ChromeDriver DevTools support for Selenium 4 Grid

Selenium 4 will support DevTools for Chrome. Is it planned to use these features on a selenium grid? And if so how would you initalize a ChromeDriver object. What i am looking for is this kind of statement // this does not work ChromeDriver driver =…
3
votes
1 answer

How to update web browser on selenium/node-chrome inside docker

I had to update my web browser inside docker file, because I get on my tests report that banner, and it's failed my automation tests. I don't know how to update that. Should I do it through docker update container? Or should I delete…
pawelkuznik
  • 107
  • 10
3
votes
3 answers

Angular CLI E2E Testing Wrong ChromeDriver

I am using the angular CLI. I created it with: ng new MyFirstApp I then tried to run the end to end tests with: ng e2e I got the following error message: E/launcher - session not created: This version of ChromeDriver only supports Chrome version…
3
votes
3 answers

session not created: This version of ChromeDriver only supports Chrome version 79 with Octopus

I'm trying to run "ng e2e" command with octopus with following configuration but getting below error all the time: [07:20:37] E/launcher - session not created: This version of ChromeDriver only supports Chrome version 79 (Driver info:…
3
votes
1 answer

How to input text in table form input using selenium java?

I'm new in using selenium, but I'm already read a lot of documentation and some code from websites. I want to write weight, and height to get BMI (ideal weight). There are 3 forms like weight form, height form (in feet) and height form (in…
jhon
  • 344
  • 3
  • 15
3
votes
1 answer

Python Selenium Click a button with class

I'm new to python selenium and I'm trying to click on a button which has the following HTML structure:

Click on Submit to Get Link


3
votes
2 answers

Opening inspect (pressing F12) on Chrome via Selenium

I am able to open Chrome via Selenium, but am unable to simulate a key press (specifically F12, since I want to open Inspect and eventually use the mobile browser Like so) While I'm able to do it manually i.e, open Chrome and press F12, I want to be…
3
votes
3 answers

How to selecting option from right click menu with Selenium

I'm using chrome as the driver and after double-clicking/context-clicking, the prompt window opens but the driver won't switch to the prompt window. Here is what I have tried... The page I am opening is google.com, search, then trying to right-click…
3
votes
1 answer

opening chrome in selenium issue

I'm currently taking my first automated test class and the instructor has us creating a program in Eclipse after loading Selenium and create a step in the program to look at an executable to bring up chrome then designate a website to check. It…
WillieV
  • 31
  • 1
3
votes
5 answers

instead of sendkeys last copied item from clipboard is getting entered in the element

In my application I have an email field and I'm using sendkeys to send an email address, but instead of sendkeys selenium inserts the value from clipboard. Do anyone faced this issue? code: WebElement…
3
votes
1 answer

Python Selenium go around detection?

I'm trying to scrape this page - https://www.g2.com/products/dropbox/reviews But I'm getting detected as soon as the request comes, is there a way around that? Tried to use Request before that, and also getting detected. *I can't use Scrapy in this…
3
votes
2 answers

Refused to load the script because it violates the following Content Security Policy directive: script-src error with ChromeDriver Chrome and Selenium

I am trying to scrape Phone Number from these links "https://www.practo.com/delhi/doctor/dr-meeka-gulati-dentist-3?specialization=Dentist&practice_id=722421" and…
3
votes
1 answer

CTRL S to save a chrome page contents using selenium python not working

I am trying to use CTRL + S in selenium to save contents of a page but can't get anything happening. If I try to do it using my keyboard the save window opens. from selenium.webdriver import ActionChains from selenium import webdriver from…
user2419259
  • 93
  • 1
  • 8
3
votes
2 answers

Selenium webdriver.Remote driver does not work with tor proxy(webdriver.Chrome does)

I'm trying to use socks5 proxy on my remote driver which is hosted as a docker container on port 4444. here is code-sample: from selenium import webdriver opts =…
An Se
  • 870
  • 11
  • 24