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

Automated Gmail Logins

Gmail has stopped the use of automated browser sign in. Is there any way to bypass it? I am using selenium with a chrome driver along in python. This is the error: You are trying to sign in from a browser or app that doesn't allow us to keep your…
0
votes
1 answer

Python script that uses Selenium webdriver for Chrome, trying (and failing) to print elements contained in a listbox

The script I am running is as follows: #import necessary packages from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from…
pj5654
  • 3
  • 2
0
votes
0 answers

is there a way to locate items with selenium at OWA?

I'm trying to automate Outlook webmail app, to check my email account and start looking for emails with special words in the subject and brings them to inbox or other and maybe reply. I have already made a code that does the same thing with Gmail,…
0
votes
0 answers

Force my preferences on user Chrome profile in Chrome web driver, add_experimental_option does not work on user chrome profile

I can successfully launch my user Chrome profile on web driver but I cannot force my preferences on this user profile using add_experimental_option. While the add_experimental_option work on default driver chrome instance but does not seems to work…
0
votes
0 answers

web driver add_experimental_options () not working when i load my User Data chrome profile with active logins and bookmarks etc in chrome web driver

I need to load my default chrome profile in selenium chrome web driver, and force some preferences in it using add_experimental_options() but it does not seems to work. I tried using add_experimental_data but no luck. #intializing chrome options =…
0
votes
1 answer

Why can't Webdriver find an element through xpath?

My code can't find a registration link with XPath. Same problem using CSSSelector. driver = new ChromeDriver(options); driver.Navigate().GoToUrl("https://www.goldtoe.com/state/landing"); var LoginLink =…
0
votes
1 answer

Using Selenium with Chrome version 74: unexpected NoSuchElementException occurs

I'm trying to use Selenium with version 74 of chrome. I downloaded the most current updates from Selenium and the ChromeDriver as instructed by the documentation. This was my functioning code before the upgrades - IWebDriver driver = new…
KarkMump
  • 81
  • 1
  • 8
0
votes
2 answers

How to select/click in a dropdown content using selenium chromewebdriver / python

My website form have updated and my script is no more working. I cannot fix it because I'm not able to find how to select in a dropdown content using selenium chrome web driver and python. formattedstate is the value of a formatted data (read from a…
DLP
  • 1
  • 5
0
votes
4 answers

Selenium can't open a page with webdriver using my own cookies

I'm trying to set some cookies that I already have, to handle a request to a site using ChromeWebDriver and Selenium in Java: System.setProperty("webdriver.chrome.driver", "/Users/test/Desktop/Configs/chromedriver"); WebDriver driver = new…
Bondavalli69
  • 63
  • 1
  • 7
0
votes
1 answer

Selenium Web Driver - Trying to Click on Save Button that has unselectable="on". Is there a way to get around this?

I am in the process of completing a script for work. The last step in my script is to click on the save button. I've tried several different methods(locate by id, css, and xpath). I keep getting error messages from Jupyter " Message: unknown error:…
0
votes
1 answer

Unable to find Matching Set of Capabilities and ChromeDriver

Here is the situation. I downloaded the chrome webdriver, unzipped the file, and went through the steps for setting the path through system properties. I am still unable to open chrome from Eclipse. Please help. Unable to find matching set of…
0
votes
2 answers

Selenium commands not working in Chrome web driver (working with firefox)

I'm writing integration/e2e tests and for some reason any selenium driver commands don't see to be working with chromedriver, but they are working flawlessly with firefox driver and the firefox headless driver. Commands tried: moveByOffset, and…
0
votes
1 answer

Error running an automated script using Selenium Web Driver when trying to read a CSV file

I'm trying to run an automated test using Selenium Web Driver (ChromeWebDriver) and in the script I need to read a CSV file with some parameters, the purpose of the script is to make a login on a site using different users, but I'm getting the…
0
votes
0 answers

Can't get "WebDriver" element data if not "eye-visible" in browser using Selenium and Python

I'm doing a scraping with Selenium in Python. My problem is that after I found all the WebElements, I'm unable to get their info (id, text, etc) if the element is not really VISIBLE in the browser opened with Selenium. What I mean is: First…
0
votes
0 answers

Python Chrome Webdriver Element not Clickable

I'm trying to use Chrome Webdriver to click the shopping cart button on https://papajohns.com/order/menu. So far, I've tried…