webdriver Questions

2

Solved

anybody know how to disable a debugger/logging in chrome webdriver in Python 3.6 ? I'm trying following code and it isn't working. chrome_options = webdriver.ChromeOptions() chrome_options.add_...
Hirz asked 5/12, 2017 at 8:29

12

I'm trying to use the webdriver and Selenium, it was working fine a couple days ago but I'm currently facing this issue where I receive this error: [Errno 8] Exec format error: '/Users/[USER]/.wdm/...
Dartmouth asked 24/7 at 17:43

9

Solved

I'm trying to start a selenium webdriverinstance, but I get this error: SessionNotCreatedError: session not created: This version of ChromeDriver only supports Chrome version 97 Current browser ver...

7

Solved

I need to install chromedriver on Windows OS. In the article below they specify: https://sites.google.com/a/chromium.org/chromedriver/getting-started "...ChromeDriver expects you to have Chrom...

10

Solved

I am writing tests for a web App using selenium webDriver and came across a scenario where when I try to close the browser I get a popup saying "Are you sure? The page is asking you to confirm that...
Payable asked 28/7, 2011 at 0:9

13

Solved

I download ChromeDriver and by defaults the browser language is in English, I need to change it to Spanish, and I have been unable. public WebDriver getDriver(String locale){ System.setProperty(...

4

Solved

This is about selenium webdriver in java. If clicking on an element, usually it goes fast but sometimes when server is busy it will say Connecting... at the top of the browser and hang. Usually to ...
Haroun asked 7/5, 2012 at 17:13

9

I want have a text that is copied to the clipboard and would want to paste that into a text field. Can someone please let me know how to do that for ex:- driver.get("https://mail.google.com/"); ...
Mechanism asked 7/11, 2016 at 7:12

20

I know this has been asked lots of times before but how do you get around the "element not interactable" exception? Here is my code: button = driver.find_element_by_class_name(u"info...
Footie asked 22/5, 2017 at 17:47

8

Hoping an expert can help me with a Selenium/Cloudflare mystery. I can get a website to load in normal (non-headless) Selenium, but no matter what I try, I can't get it to load in headless. I have ...
Marela asked 7/7, 2021 at 16:6

6

Solved

I'm trying to use Allure-framework to generate a report for my Selenium WebDriver tests. I use JUnit framework and allure-maven-plugin with version 1.3.9 of Allure. I run tests with mvn test then g...
Tempt asked 2/6, 2014 at 14:53

3

Solved

I followed this post on Stackoverflow to disable Firefox WebDriver detection. Launch Geckodriver: System.setProperty("webdriver.gecko.driver", geckdriverExecutableFilePath); File firef...

11

Solved

I was trying for my web test selecting an option. An example can be found here: http://www.tizag.com/phpT/examples/formex.php Everything works great except the selecting an option part. How to sel...
Bequest asked 11/3, 2011 at 20:58

52

Solved

I am trying to launch chrome with an URL, the browser launches and it does nothing after that. I am seeing the below error after 1 minute: Unable to open browser with url: 'https://www.google.co...

6

Solved

What is Selenium? When you open the official page of the Selenium, the first thing you read is "Selenium automates browser" in "What is Selenium?" section. The section "Which part of Selenium is...
Zeculon asked 31/1, 2019 at 11:34

4

Solved

Is there any way to locate parent element in CSS Selector? i am using below code but i am not getting the parent element. WebElement we=dr.findElement(By.cssSelector("div[id='gf-BIG']:parent")); ...
Vassalage asked 23/6, 2015 at 4:28

4

Solved

I'm trying to automate sign in into gmail and I get to see this error. I think this must be because the website is able to detect the automation and blocking it. Can you all please tell me how ...
Chanterelle asked 17/12, 2019 at 18:48

2

Solved

Using python, the method WebDriverWait is used to wait for 1 element to be present on the webpage. How can this method be used without multiple try/except? Is there an OR option for multiple cases...
Reparation asked 2/3, 2020 at 20:30

4

I have a page which loads dynamic content with ajax and then redirects after a certain amount of time (not fixed). How can I force Selenium Webdriver to wait for the page to redirect then go to a d...
Sparrow asked 12/10, 2016 at 15:42

4

I'm working on dealing with a file-chooser dialog using Selenium 2 - WebDriver. Believe it or not, my problem is NOT dealing with the OS-native file-chooser. That part I can handle! The problem is...
Yawp asked 15/3, 2012 at 18:37

10

I need to check the existence of Alert in WebDriver. Sometimes it pops up an alert but sometimes it will not pop up. I need to check if the alert exists first, then I can accept or dismiss it or i...
Easiness asked 13/7, 2012 at 9:12

5

I try to press the Replay button at Spotify Web Player with Python, but get this error. How can I press buttons in a webplayer? replay = driver.find_element_by_xpath("""/html/body/di...
Tatman asked 6/11, 2019 at 15:59

3

I need to add the apache poi to my project (I need hssf, ss and xssf). I downloaded a jar file from the internet but it does not contain xssf. I went to http://poi.apache.org/ and I downloaded this...
Ousley asked 19/2, 2013 at 13:28

3

Solved

I'm trying to set up selenium-webdriver example using Javascript and Microsoft Edge. In any other browser this code below works. But Edge won't start. I tried to find a solution, but couldnt find a...
Insignificance asked 2/2, 2018 at 7:41

7

I have a python script that scraps data off from a website on an hourly basis. It is stored on the server at the moment and is working well as I am using task scheduler to schedule it to execute th...
Asquint asked 4/3, 2017 at 1:49

© 2022 - 2024 — McMap. All rights reserved.