How to hide Firefox window (Selenium WebDriver)? How to hide Firefox window (Selenium WebDriver)? python python

How to hide Firefox window (Selenium WebDriver)?


Python

The easiest way to hide the browser is to install PhantomJS. Then, change this line:

driver = webdriver.Firefox()

to:

driver = webdriver.PhantomJS()

The rest of your code won't need to be changed and no browser will open. For debugging purposes, use driver.save_screenshot('screen.png') at different steps of your code or just switch to the Firefox webdriver again.

On Windows, you will have to specify the path to phantomjs.exe:

driver = webdriver.PhantomJS('C:\phantomjs-1.9.7-windows\phantomjs.exe')

Java

Have a look at Ghost Driver: How to run ghostdriver with Selenium using java


C#

How to hide FirefoxDriver (using Selenium) without findElement function error in PhantomDriver(headless browser)?


Just add the following code.

import osos.environ['MOZ_HEADLESS'] = '1'driver = webdriver.Firefox()


Finally I found the solution for those who are using windows Machine for running the Tests using any method. Well, implementation is not in Java, but you can do it very easily.

Use AutoIt tool. It has all the capability to handle windows. It is a free tool.

  1. Install AutoIt:http://www.autoitscript.com/site/autoit/downloads/

  2. Open the Editor and write below codefor Hiding any window.

    AutoItSetOption("WinTitleMatchMode", 2)WinSetState("Title Of Your Window", "", @SW_HIDE) 
  3. To Unhide it, you can use below line of code.

    AutoItSetOption("WinTitleMatchMode", 2)WinSetState("Title Of Your Window", "", @SW_SHOW)

    WinTitleMatchMode has different options which can be used to match Windows title.

    1 = Match the title from the start (default)`2 = Match any substring in the title3 = Exact title match4 = Advanced mode, see Window Titles & Text (Advanced)

So, what I've done is: I have created an .exe file of a small program and passed a parameter as a command line argument as below.

Runtime.getRuntime().exec("C:/Diiinnovation/HideNSeek.exe 0 \"" + "Mozilla Firefox" + "\"");

in HideNSeek.exe - I have below AutoIt Code:

AutoItSetOption("WinTitleMatchMode", 1) if $CmdLine[0] > 0 Then    if $CmdLine[1] == 0 Then        WinSetState($CmdLine[2], "", @SW_HIDE)        ElseIf $CmdLine[1] == 1 Then        WinSetState($CmdLine[2], "", @SW_SHOW)              Else        EndIf   EndIf

$CmdLine[] is an array, which will have all command line parameters...

$CmdLine[0] = number of Parameter$CmdLine[1] = 1st Parameter after Exe Name ...

If there is any space in the Window Title, then you have to use double quotes to pass it as a command line parameter like above.

Below Line of code will execute AutoIt exe and if I pass '0' in 1st parameter then it will hide the window and if I will pass '1' then it will unhide windows matching the title.

Runtime.getRuntime().exec("C:/Diiinnovation/HideNSeek.exe 0 \"" + "Mozilla Firefox" + "\"");

I hope this will help you. Thanks!