Selenium WebDriverの選択機能を使用している場合、ウィンドウは完全に消えますが、アクティブなままです(タスクバーで確認できます)。したがって、フォーカスを失うことなく、最小化されているように見えます。
これにより、特定のテストが失敗します。
void select(String locator, String option){
WebElement dropdown = driver.findElement(By.xpath(locator));
Select selectBox = new Select(dropdown);
selectBox.selectByVisibleText(option);
}