selenium-webdriver Questions
9
Solved
I am trying to click on an element but getting the error:
Element is not clickable at point (x,y.5)
because another element obscures it.
I have already tried moving to that element first and th...
Douglass asked 13/3, 2018 at 9:46
10
Solved
I'm trying to scrape some data from flight search page.
This page works this way:
You fill in a form and then you click on the button search - this is ok. When you click the button you are redi...
Castello asked 19/6, 2015 at 15:34
0
I want to convert a set of desired capabilities to options in selenium Python.
In the below code i want to find the equivalent of dc["goog:loggingPrefs"] = {"browser":"INFO...
Villous asked 5/7, 2023 at 17:57
4
Solved
I was working on my selenium project my chrome version is 114.0.5735.134 but i don't find the latest chrome driver here https://chromedriver.chromium.org/downloads
how can I run my script?
Istle asked 27/6, 2023 at 7:33
2
Solved
I need to automatically download using Python a .csv file that is in this web page:
https://pace.coe.int/en/aplist/committees/9/commission-des-questions-politiques-et-de-la-democratie
Now, I have ...
Chiquitachirico asked 28/6, 2023 at 17:0
5
Solved
I'm trying to get the current url after a series of navigations in Selenium. I know there's a command called getLocation for ruby, but I can't find the syntax for Python.
Socialminded asked 13/4, 2013 at 7:20
3
I've tried writing this code on my jupyter notebook, and it shows me the error. My objective is to carry out web scrapping.
driver = webdriver.Chrome(ChromeDriverManager().install())
enter image d...
Treadwell asked 26/6, 2023 at 5:44
5
I am confused between FluentWait and WebDriverWait.
FluentWait and WebDriverwait both uses the same features like ignoring exceptions, change polling time interval, expected conditions etc.
As p...
Rolanderolando asked 22/11, 2016 at 23:9
9
I am working on Selenium WebDriver automation in java programming language. In my test suite that initiates the browser window once and perform all the tests. I want to clear the browser cache befo...
Oshinski asked 6/10, 2015 at 13:8
6
For some of the web links on our page, there are external links which direct the user to say Facebook and Twitter. The links use the HMTL tag target="_blank" so that a new browser tab is opened for...
Colon asked 21/6, 2013 at 0:19
34
When i'm trying to run the test suite, am getting this exception. We are using maven project here and i am done with refreshing, cleaning, reinstalling testNG and then imported the maven projects b...
Selfsupport asked 28/8, 2014 at 8:11
6
I am trying to use headless chrome for our selenium tests and have made the below changes:
DesiredCapabilities desiredCapabilities = DesiredCapabilities.chrome();
ChromeOptions options = new Chrom...
Digitalize asked 27/3, 2018 at 19:0
3
Looking to enable "Preserve log" with chromedriver.
https://sites.google.com/a/chromium.org/chromedriver/capabilities loggingPrefs points to google code archive page and is not very helpful.
My ov...
Erlin asked 30/11, 2017 at 17:52
7
Solved
I am trying to select from a list of 3 buttons, but can't find a way to select them. Below is the HTML I am working with.
<input name="pollQuestion" type="radio" value="SRF">
<font face...
Janellejanene asked 24/1, 2014 at 0:22
2
Solved
If webdriver manager is imported into our selenium code
(from webdriver_manager.chrome import ChromeDriverManager),
then it is not required that we need to keep updating the browser drivers like ch...
Carriole asked 12/6, 2023 at 6:13
5
Solved
I am working on python and selenium. I want to download file from clicking event using selenium. I wrote following code.
from selenium import webdriver
from selenium.common.exceptions import NoSu...
Saturant asked 26/8, 2013 at 8:32
1
I am trying selenium for the first time and I get a AttributeError: 'str' object has no attribute '_ignore_local_proxy' error, when running code taken from here:
from selenium import webdriver
dri...
Galagalactagogue asked 10/6, 2023 at 10:16
2
Solved
I am trying to install and use RobotFramework for the first time. I've done all the installations and have a test robot that simply tries to open Chrome. Every time I run it, I get the following er...
Twombly asked 8/6, 2023 at 16:5
3
Error:
HOOK-ERROR in before_scenario: TypeError: WebDriver.__init__() got an unexpected keyword argument 'desired_capabilities'
Hello, we currently cannot run our script together with the latest S...
Lattice asked 8/6, 2023 at 8:56
2
I'm using selenium in python under Linux and have it setup to use a specific Firefox profile. That part is working fine. However, it is creating a copy of the profile in /tmp and not using the prof...
Stater asked 12/3, 2018 at 12:13
13
I'm trying to test a complicated JavaScript interface with Selenium (using the Python interface, and across multiple browsers). I have a number of buttons of the form:
<div>My Button</div&...
Normally asked 7/9, 2012 at 18:20
3
I'm trying to have Selenium find an element based on a string that can be contained in the element's text or any attribute, and I'm wondering if there's some wildcard I can implement to capture all...
Oconnor asked 27/8, 2015 at 21:36
8
Solved
How can I select the checkbox using Selenium with Python?
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
browser = webdriver.Firefox()
url = 'Any URL'
browser.get(u...
Altis asked 19/1, 2014 at 5:5
7
Solved
With latest chromedriver.exe running into out of disk space issues as chromedriver is not deleting the folder named scoped_* at the end of the execution. It is occupying almost 20 GB of space for 4...
Nourishment asked 8/4, 2017 at 0:52
1
I webscrape in Jupiter notebook (Python) using selenium and a chrome driver. With the new chrome version (113.0.5672.64) the driver fails to launch. I have the 113.0.5672.63 chrome driver version. ...
Sokul asked 6/5, 2023 at 19:3
© 2022 - 2024 — McMap. All rights reserved.