Python Selenium : How to hide geckodriver?

6k Views Asked by At

I am writing an program for a web automation in python. Is here a ways to hide the geckodriver? So that the console (see picture) won't show up when I start the program.

console of geckodriver

here is a fraction of my code:

from selenium import webdriver
from selenium import *
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC`


driver=webdriver.Firefox()
wait=WebDriverWait(driver,120)
url = r"http://google.com"
driver.get(url) #This line starts the console (see picture)
7

There are 7 best solutions below

3
On

You have to take care of a couple of stuffs here:

  1. Keep the useful imports. Unusual imports like from selenium import * (in your code) must be avoided.
  2. Keep your code minimal. wait=WebDriverWait(driver,120) have no usage in your code block.
  3. When you use the raw r switch remember to use single quotes '...'
  4. If you initialize the webdriver instance remember to call the quit() method.
  5. Be careful about indentation while using Python.
  6. Here is the minimal code which uses geckodriver to open the url http://www.google.com, print the Page Title and quits the driver instance.

from selenium import webdriver

driver=webdriver.Firefox(executable_path=r'C:\Utility\BrowserDrivers\geckodriver.exe')
url = r'http://www.google.com'
driver.get(url)
print("Page Title is : %s" %driver.title)
driver.quit()

Console Output:

Page Title is : Google
2
On

I was able to do that after implementing PyVirtualDisplay

sudo pip install pyvirtualdisplay # Install it into your Virtual Environment

Then just import Display as follows:

from pyvirtualdisplay import Display

Then, before fetching, start the virtual display as follows:

# initiate virtual display with 'visible=0' activated
# this way you will hide the browser
display = Display(visible=0, size=(800, 600))
# Start Display
display.start()

...
# Do your fetching/scrapping
...

# Stop Display
display.stop()

I hope it helps

3
On

To prevent geckodriver from displaying any windows, you need to pass -headless argument:

from selenium import webdriver
options = webdriver.FirefoxOptions()
options.add_argument('-headless')
driver = webdriver.Firefox(options=options)
driver.get('https://www.example.com')
...
driver.quit()
1
On

This worked for me in C#. It blocks both geckodriver and firefox window

                FirefoxOptions f = new FirefoxOptions();
                f.AddArgument("-headless");                    
                var ffds = FirefoxDriverService.CreateDefaultService();
                ffds.HideCommandPromptWindow = true;
                driver = new FirefoxDriver(ffds,f);
0
On

So I found a very generic workaround to solve this on Windows (in Linux it doesn't seem to be an issue in the first place, can't speak for OSX).

So you need to make three files and its very awkward.

First, you make a file. call it start.bat (or anything) and put the following code in it:

wscript.exe "C:\Wherever\invisible.vbs" "C:\Some Other Place\Run.bat"

This will be the top level batch script. It will be visible for a split second while it launches a visual basic script and passes a batch script as an argument. The purpose of this is to make the next console invisible. Next we make the VBscript, invisible.vbs:

CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False

Finally, we make the script that invisible.vbs is supposed to hide, we could call it Run.bat

cd C:\Wherever
python script_using_geckodriver.py

What happens is, as follows:

  1. The first .bat file launches invisible.vbs
  2. invisible.vbs launches the second .bat file without showing it on screen.
  3. The second .bat file then launches the python program. Python (and geckodriver) output to the invisible cmd therefore hiding the geckodriver console window.

P.S. all of this works with PyInstaller to produce a single redistributable package the user can just click on.

Credit harrymc @ superuser.com for this solution, which I found when trying to solve an unrelated problem. I tested and realized it was cross applicable to this. https://superuser.com/questions/62525/run-a-batch-file-in-a-completely-hidden-way

1
On

Here the approach which has solved it in my case. I used @thekingofravens suggestion but realized that it is just enough to create the Run.bat file which he mentions in his post. Previously I ran my programms in IDLE with F5. Because of this the Geckodriver popped up every few seconds.

My Solution: I just made the Run.bat file with the same code:

cd C:\PathToYourFileWhichIsCausingTheGeckodriverToPopUp 
python FileWhichIsCausingTheGeckodriverToPopUp.py

And thats it. Just start this file when you want to run your code and the Geckodriver won't pop up. (That it works without the whole path to you program, Python has to be in PATH.) Also, of course you can run your program from the command line with the same commands like above and without creating an extra bat file.

0
On

So this isn't a total solution, but you can mitigate the geckodriver command window's intrusiveness by making it smaller and/or putting it in a less bothersome place. To do so, open a command window, right-click the top bar, left-click defaults, and go to the Layout tab. From there, you can set the default size-position.