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
0
votes
0 answers

How to handle AntiForgery token in Selenium webdriver using Java?

I'm getting an Antiforgery token issue while I am clicking an update button using selenium web driver automation in my web application. I'm using chrome browser. Can anyone help me with this please?
0
votes
1 answer

How do I press keys in selenium vba ? (chrome)

I try these methods but none of them work. Mydoc.FindElementByXPath("/html/body").SendKeys (Space) Mydoc.FindElementByXPath("anyxpath").SendKeys…
0
votes
2 answers

Selenium error namely 'selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable'

I received this error while trying to automate sending message in whatsapp. here is the source code. selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable from selenium import webdriver from…
0
votes
1 answer

Trying to open chrome on my profile with selenium in python 3.8

Every time chrome opens it's not on my profile, so I don't have all of my saved passwords an extensions. I searched for a while and this is what came out. Chrome still opens but it's not on my profile. Can anyone tell me what I've done wrong? from…
0
votes
1 answer

How to scrape tables after on click button for multiple pages listed in a CSV file? Selenium, Python

I would like to scrape all the information in a table presented multiple URLs using the pd.read_html function. An example of a website would be: https://www.top40.nl/10cc/10cc-donna-5867 which I import through a csv file. After entering the website…
0
votes
4 answers

I can't find an element in Selenium.(Python/Google)

This is the link https://webmail1.hostinger.com/ I want to locate the 2 input boxes and input my email and password, but i can't acess them. I can easily find them by inspecting the page but i can't find them by their xpath, selector, id etc. I…
0
votes
2 answers

Installed chrome driver and added it to path yet error shows Chromedriver needs to be in path

hey guys so im trying to make a Chegg bot which needs the chromedriver and I downloaded the chrome webdriver and imported selenium using my command line. i added the webdriver in path and I specified the location yet weeoes show that the file cannot…
0
votes
1 answer

I want to copy dynamically generated content from a textarea with selenium

http://eemaata.com/font2unicode/Encoder/unicode2font.php5 this is a website where we can convert unicode text to Anu Script Manager version (which is used for printing purposes). so what I am trying to do is 1. open website 2. paste the clipboard…
0
votes
0 answers

Selenium WebDriverException: chrome not reachable

I am trying to scrape a Javascript page with Python. Seeing that PhantomJS is already deprecated, I am trying to use headless Chrome webdriver to load the page to no avail. The driver is loaded but the code mostly crashes either during the wait or…
0
votes
1 answer

Selenium webdriver error:Timed out waiting for driver server to start

Error log:- Starting ChromeDriver 80.0.3987.106 (f68069574609230cf9b635cd784cfb1bf81bb53a-refs/branch-heads/3987@{#882}) on port 37282 Only local connections are allowed. Please protect ports used by ChromeDriver and related test frameworks…
0
votes
0 answers

How to make Python open up Chrome webdrivers faster?

Using this code: from datetime import datetime, time from time import sleep import numpy from selenium import webdriver from selenium.webdriver.support.ui import WebDriverWait from multiprocessing import Process def dateDiffInSeconds(date1,…
Rxyces
  • 58
  • 8
0
votes
3 answers

Webdriver.chrome not opening chrome

I'm working on an automation script and I'm trying to open a url in chrome, I have installed and imported selenium and downloaded the chrome driver and moved it to /usr/local/bin. But when I try and run the script, the console is blank and then…
0
votes
1 answer

How to catch HTTP request of python selenium web driver?

I am making a web application with Django-Gunicorn-Nginx. It is a kind of closed community. Therefore at the start of sign-up, authentication by the third-party server is required. Because the third-party server does not provide official auth API,…
0
votes
1 answer

Selenium and BeautifulSoup - Trying to scrape content from page 1 THEN go to page 2 and so on

I am having a hard time understanding how to grab all of the pages content that I want. I am able to grab the information I want from page 1 but getting the next 15 pages is the challenge. I am using selenium and chrome webdriver to get the info…
0
votes
1 answer

Most basic Selenium webdriver "Hello World" fails miserably

My selenium webdriver 'hello world' program is error-ing. Apologies since I am very new to this. I spun up a new Ubuntu image and here is my setup: Ubuntu 18.04 with Google Chrome installed Ruby on Rails selenium-webdriver gem installed VNC is…