在使用Selenium WebDriver启动谷歌浏览器Chrome时,在新启动的浏览器地址栏下方经常会显示一行提示信息:“chrome正受到自动测试软件的控制”,英文的就是“'Chrome is being controlled by automated test software'。
我们可以通过引入ChromeOptions类来解决这个问题,ChromeOptions类中定义的一些方法,可以指定Chrome浏览器以特定的方式去启动,通过传参数“disable-infobars”,可以让Chrome浏览器在启动时不显示信息栏。
下面是基于Java语言的解决示例:
1 package learnwebdriver; 2 3 import org.openqa.selenium.WebDriver; 4 import org.openqa.selenium.chrome.ChromeDriver; 5 import org.openqa.selenium.chrome.ChromeOptions; 6 7 public class UseBrowserChrome { 8 9 public static void main(String[] args) { 10 11 System.setProperty("webdriver.chrome.driver", "D:\BrowserDriver\chromedriver.exe"); 12 13 //取消 chrome正受到自动测试软件的控制的信息栏 14 ChromeOptions options = new ChromeOptions(); 15 options.addArguments("disable-infobars"); 16 17 //带参数启动Chrome浏览器 18 WebDriver driver = new ChromeDriver(options); 19 20 driver.manage().window().maximize(); 21 22 driver.get("http://www.baidu.com/"); 23 24 25 //driver.quit(); 26 27 28 } 29 30 }