When I execute multiple test simultaneously, i don't want to keep Firefox browser window visible.. I can minimize it using selenium.minimizeWindow() but I don't want to do it.
Is there any way to hide Firefox window? I am using FireFox WebDriver.
|
When I execute multiple test simultaneously, i don't want to keep Firefox browser window visible.. I can minimize it using Is there any way to hide Firefox window? I am using FireFox WebDriver. |
||||
|
|
|
Finally I found the solution for those who is using windows Machine for running the Tests using any method. Well, implementation is not in java but you can do it very easily. Use
So what I am doing is: I have created exe of a small program and passing parameter as command line argument as below.
in
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.
I hope this will help you. thanks! |
|||
|
|
|
If you're using Selenium RC or Remote WebDriver then you can run the browser instance on a remote, or virtual machine. This means that you shouldn't have to worry about hiding the browser windows as they won't be launching on your local machine. |
|||||
|
|
Also try running selenium as a windows service. See here more details: Selenium - Can I hide the browser? |
|||
|
|
|
I had a similar problem with ChromeDriver (I needed to minimize the browser window while the tests are running). I could not find a better way to do it, so I ended up using the keyboard combination Alt+Space, N to do it. This should work only in Windows, the example uses the Java AWT Robot class to play the keyboard shortcuts:
|
|||
|
|
|
If you are using KDE Desktop, you can make Firefox Windows to be initially opened being minimized. That made my day to me regarding this problem. Just do the following:
These settings will apply for new Firefox windows from now on and you will not be bothered with pop-ups anymore when running tests with Webdriver. |
||||
|
|
|
Which operating system are you using? I guess you can achieve this in UNIX family of systems. You would not even have access to browser manually. It runs in background, though I don't remember much how it is achieved. |
|||
|
|
I used xvfb to solve the problem like this. |
|||
|
|