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.

10700 questions
2
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…
2
votes
1 answer

Getting a specific error in all browser version

I tried below code in different chrome versions but error not resolved. Chrome Version 81 (32 bit) Chrome Version 65.0.3325.146 (Official Build) (64-bit) Java version 1.8 Selenium version 3.141.59 Can anyone help to resolve this. As per code…
2
votes
2 answers

This version of ChromeDriver has not been tested with Chrome version 79 error running protractorE2E tests with ChromeDriver Chrome Selenium

Those are my settings: .gitlab-ci.yml image: node stages: - test tests: stage: test before_script: # Add Google Chrome to aptitude's (package manager) sources - echo "deb http://dl.google.com/linux/chrome/deb/ stable…
2
votes
2 answers

org.openqa.selenium.WebDriverException: disconnected: received Inspector.detached event error during test execution using Selenium and Chromedriver

I know that Selenium is an automated testing tool, but i'm trying to use it for RPA instead (things to do with my work environment) I've gotten the java code down, and it runs exactly how i want it. It takes data from an excel sheet, converts the…
2
votes
1 answer

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…
2
votes
1 answer

Python selenium download pdf with headless and plugins.always_open_pdf_externally

I need to download a pdf, I use headless so the browser doesn't open, and the pdf is in a view, so I used the "plugins.always_open_pdf_externally" parameter: True. To not render the browser I use the options.add_argument ("- headless") parameter. If…
2
votes
1 answer

Selenium Webdriver: Expected condition failed: waiting for visibility of element located in headless mode for IAP Google

I'm trying to use headless mode on application having a step with IAP google. It runs without errors when headless mode is off. When the headless mode is On selenium can not locate the element. I don't know how to fix that. I've tried a lot of…
2
votes
1 answer

Driver info: driver.version: unknown with ChromeDriver Chrome using Selenium and Python

It is showing timed out for driver server to start when I use chrome driver. And when I try to use Firefox it is showing session unexpectedly exited. I am trying to run the Remote driver on a server using selenium in python what should I do? Unable…
2
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…
2
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…
2
votes
2 answers

selenium.common.exceptions.WebDriverException: Message: Service /usr/bin/google-chrome unexpectedly exited with ChromeDriver Selenium Python on Linux

from selenium import webdriver driver = webdriver.Chrome(executable_path=r'/usr/local/bin/google-chrome') driver.get('https://www.google.co.in') print("Page Title is : %s" %driver.title) driver.quit() I receive this error: File "test.py", line…
user11940263
2
votes
2 answers

Python / Selenium - Comments in the code apparently doing difference in triggering NoSuchElementException

Working on removing boring stuff from my job. Below you find the Python's Selenium library being used to access the website containing German companies' registers. It does the following: opens the Handelsregister website, looks for the "normal…
2
votes
1 answer

Selenium SendKeys Keys.ArrowRight moves to end of contenteditable text

When I use SendKeys to send a right-hand-cursor-arrow, the caret moves to the end of the contenteditable instead of one character to the right. works as expected on input boxes used to work on previous versions (6 months ago, do not know…
daw
  • 1,161
  • 12
  • 20
2
votes
2 answers

How to address Chrome displaying "Aw, Snap!" page while executing tests through ChromeDriver and Selenium through Python 3

After about an hour of running my selenium browser will display an "Aw, Snap!" page, and I am unable to interact with the browser in any way from the console, and I have to close browser and re-start my script. Is there an explanation or easy fix…
2
votes
0 answers

Chrome Driver in Selenium runs extremely slow after a while

I am running a simple program written in python to launch a chrome incognito browser, navigate to a website, cast a vote (by clicking a radio button then clicking the vote button), then close the browser and repeat. I am running this code: while…
Lzypenguin
  • 687
  • 3
  • 12
1 2 3
99
100