简体   繁体   中英

How to make browser window to run in background when running JUnit with Selenium WebDriver from IntelliJ Idea?

I am running automation tests on Selenium WebDriver as JUnit tests from IntellijIdea. When a browser opens and some actions are being done in it then it always brings itself to the front, even if I have tab-ed to other window. This is not very convenient. Some tests run for few minutes and I would like to be able to work on some other tasks while they are running. Or in case if I want to run the whole suite I can't just sit and watch for 30 minutes.

I started to have this problem after I switched from Windows OS to Linux Mint. On Windows browser remained in the background and did not bother me. Is there any way to configure such behavior on Linux Mint OS?

I have already tried to run the browser/IntelliJ Idea in a separate LinuxMint's workspace, doesn't help. The browser window pops up in the other workspace as soon as some activity is being done there. Also I've set this config in LinuxMint's windows behavior settings: 在此输入图像描述

As of this week (chrome 57 or higher) it is possible to run chrome in headless mode . To do this you simply pass the --headless flag.

To pass this flag to chrome via Selenium webdriver you can use the following code:

ChromeOptions options = new ChromeOptions();
options.addArguments("--headless");

ChromeDriver chromeDriver = new ChromeDriver(options);

I'm not sure if this solves the focus issue completely though.. In my case there is still a chrome window stealing focus, but I think it is a big improvement as the window doesn't pop up in front of what I'm doing.

I think it's definitely worth a shot. I will continue to look at the focus issue and update if I find something.

Selenium doesn't have a built in method for minimizing the browser, however you can take out of sight by using:

driver.manage().window().setPosition(new Point(-2000, 0));

While this 'hack' will move the browser window out of sight, when the driver is initialized the browser will be visible for a short moment.

Try using RemoteDriver and it will execute code with minimized browser. Give your localhost ip as a host address. Code would look like this.

  try {


    capabilities = DesiredCapabilities.chrome();
        capabilities.setCapability("chrome.switches", Arrays.asList(
                "--start-maximized", "--disable-popup-blocking"));
        System.setProperty("webdriver.chrome.driver", System.getProperty("user.dir") + "/BrowserDrivers/chromedriver.exe");
        // Code to faster execution on Chrome 
        ChromeOptions chromOpt = new ChromeOptions();
        chromOpt.addArguments("Proxy","null");
        capabilities.setCapability(ChromeOptions.CAPABILITY,chromOpt );
        driver = new RemoteWebDriver(new URL("http://127.0.0.1:5555/wd/hub"), capabilities);*/
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

It seems that solutions you're looking for is called virtual display , you need to create virtual display and execute your tests in there. Look for xvfb . However, I'm not 100% it will work with Chrome. Another option that you have is to create virtual machine(using virtualbox, for example) under linux and use Selenium Grid to connect to it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM