Most voted "geckodriver" questions
8 questions
Sort by count of
-
10
votes2
answers1005
viewsWhen finishing the script with "Ctrl+C" (Keyboardinterrupt) does not close Selenium Firefox
I am using Selenium to manipulate a page, while running the script it opens firefox, but what I wanted to do is this, if any problem in the script or if the user finishes, I want firefox to close as…
python selenium firefox selenium-webdriver geckodriverasked 7 years, 2 months ago Wictor Chaves 8,445 -
2
votes1
answer157
viewsHow to open a browser with Python, Selenium and geckodriver?
I wrote an automation to follow people on instagram, but when I put Run in the code, it returns me in the log with no error, and still doesn’t open the browser for me to test the code. I think…
python selenium browser instagram geckodriverasked 3 years, 10 months ago Gleidson Marques dos Santos 21 -
2
votes1
answer221
viewsProblems using Selenium module with Firefox
I’m using: Debian version 9.6 Python 2.7 Selenium 3.141.0 Firefox 60.3.0 I’m trying to learn how to use Selenium with Python but I haven’t been able to do anything yet. There is always some error, I…
-
1
votes1
answer418
viewsHow do I go through the Firefox Insecure Connection alert page with Geckodriver?
How to pass certificate error screen (insecure connection) with Geckodriver Firefox Webdriver? I’m hitting a URL that displays this alert. I already added in the browser exceptions, but the problem…
-
1
votes1
answer113
viewsClick a button that is not yet on the screen
I recently decided to do an automation using Python with the Selenium module. Everything was going well until I had to simulate a click on a button that is not on the screen at the moment and the…
-
0
votes1
answer1013
viewsHow to fit the geckodriver for use of Selenium?
In Python 3 and Ubuntu, I want to run a test with Selenium: from selenium import webdriver from selenium.webdriver.firefox.firefox_binary import FirefoxBinary from time import sleep binary =…
-
0
votes1
answer201
viewsHow to loop python code Selenium?
I need to make the comments (["COMENTARIO1","COMENTARIO2","COMENTARIO3"]) if you repeat N times in a random fill, the way I did, no matter how much I put 30 in the range, they are printed 3 times…
-
-1
votes1
answer351
viewsAdd profile to Webdriver Firefox
Good morning I am automating a website, and to run some features it is necessary to use an extension in the browser. First I was trying to add the extension to the web driver with the FirefoxOptions…