Questions tagged [chrome-web-driver]

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

WebDriver is an open source tool for automated testing of webapps across many browsers. It provides capabilities for navigating to web pages, user input, JavaScript execution, and more. ChromeDriver is a standalone server which implements WebDriver's wire protocol for Chromium. It is being developed by members of the Chromium and WebDriver teams.

213 questions
5
votes
1 answer

Passthrough is not supported, GL is swiftshader, ANGLE is

When trying to run headless chrome with selenium I am getting this error: [1021/151706.155:ERROR:gpu_init.cc(453)] Passthrough is not supported, GL is swiftshader, ANGLE is my setup code: from selenium import webdriver import…
5
votes
0 answers

I can't use send_keys for chrome webdriver

I created a Python webdriver program, I used send_keys and I've got this error: Traceback (most recent call last): File "D:/Amazon FBA/amazon-100-botzi/templates/send_keys_v2.py", line 10, in elem.clear() File…
ryy77
  • 1,134
  • 5
  • 20
  • 36
5
votes
2 answers

Reading Console using Selenium Webdriver Chrome on Node.js

I want to use Selenium Webdriver Chrome in Node.js to go to a web page, fill out an input, click a button and then retrieve the contents of the browser's console. I am able to get the web page, fill out the input, and click the button, but so far I…
5
votes
2 answers

Wait for a particular URL in selenium

I have the requirement of waiting for a particular URL in website automation using Selenium in Chrome browser. The user will be doing online payment on our website. Fro our website user is redirected to the payment gateway. When the user completes…
IT researcher
  • 3,274
  • 17
  • 79
  • 143
5
votes
2 answers

When does Protractor throw 'unknown error: cannot determine loading status'..... exception

Can anyone tell me when does Protractor throw 'unknown error: cannot determine loading status from unknown error: unhandled inspector error: {"code":-32000,"message":"Internal error: main world execution context not found."}' exception. I…
Murali Krishna
  • 171
  • 1
  • 11
4
votes
2 answers

I cant install ChromeDriverManager with ChromeDriverManager().install()

I've been learning Python for 2 month, and this error has never occurred to me once but all of a sudden I can't download CHROMEDRIVERMANAGER and whenever I get to its website to download it manually it says This XML file does not appear to have any…
4
votes
0 answers

How to connect to ChromeWebDriver ignoring the system default proxy

I am working on Selenium Tests (in c#, dotnetcore2.1) for our portal webpage. The system that is running the tests (and my dev vm) have got a proxy configured (Internet Explorer -> Settings -> Internet Options -> Connections -> LAN Settings -> Proxy…
Woozar
  • 1,000
  • 2
  • 11
  • 35
4
votes
1 answer

How to install a specific version of Google Chrome on GitLab CI?

I use CI/CD Gitlab with this script but my Chrome webdriver version is setted in my Maven project (pom.xml): before_script: ########################## # Install gnupg2 # ########################## - apt-get install -y…
Stéphane GRILLON
  • 11,140
  • 10
  • 85
  • 154
4
votes
3 answers

How to fix [1573451709.039][WARNING]: Timed out connecting to Chrome, retrying... while using chrome version 78 and chrome driver version 78.0.3904.70

My Chrome browser is updated to version 78 and when I tried to execute any code of automation, it shows the error Please protect ports used by ChromeDriver and related test frameworks to prevent access by malicious code. [1573451703.668][WARNING]:…
4
votes
2 answers

web driver update error response status code is not 200

iam trying to install webdriver-manager by issuing the command webdriver-manager update and iam getting the following output webdriver-manager: using global installed version 12.0.6 (node:6312) UnhandledPromiseRejectionWarning: Unhandled promise…
oula alshiekh
  • 843
  • 5
  • 14
  • 40
4
votes
0 answers

Chrome 61, chrome driver 2.32,Uncaught WebDriverError: unknown error: Chrome failed to start: crashed (Driver info: chromedriver=2.32.498513

With latest Chrome 61 and Chrome driver 2.32, unable to start chrome in headless mode in node js environment with selenium-webdriver 3.50. Getting the error below: Uncaught WebDriverError: unknown error: Chrome failed to start: crashed …
3
votes
2 answers

Access denied to website using webdriver with Selenium

I have a problem with even an open website using "webdriver Chrome". Only trying to open the website end with "Access denied" information and don't know why. Below is my code: from selenium import webdriver from selenium.common.exceptions import…
ArturY
  • 47
  • 1
  • 7
3
votes
0 answers

How to open google-chrome-devtools using Selenium with Toggle Device Toolbar set to a specific device (Example: iPhone X)?

My current code is this - from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from selenium.webdriver.common.keys import Keys options = webdriver.ChromeOptions() mobile_emulation = { "deviceName": "iPhone…
3
votes
1 answer

Selenium Web Driver: Extracted Chrome Browser logs are incomplete

I'm writing browser tests for a Vaadin application with help of Selenium. The Chrome browser log console in development utilities shows logs of different log levels (TRACE, SEVERE, WARNING). Following code sets up my test driver: @RunOnHub public…
PAX
  • 1,056
  • 15
  • 33
3
votes
5 answers

Instagram login script with selenium, not being able to execute .send_keys('test')

Ok so, as the title says, pretty much i just cant make my python program work, it is a bot to log in to instagram and it wont actually do the logging in part, i've tried both using action chains, and without them, this is my code (python 3.6.1) :…
Alex
  • 31
  • 1
  • 1
  • 3
1
2
3
14 15