使用Selenium WebDriver使用java加载Chrome Profile
我在让Selenium加载铬配置文件时遇到了一些麻烦。
String pathToChrome = "driver/chromedriver.exe";
System.setProperty("webdriver.chrome.driver", pathToChrome);
DesiredCapabilities capabilities = DesiredCapabilities.chrome();
String chromeProfile = "C:\\Users\\Tiuz\\AppData\\Local\\Google\\Chrome\\User Data\\Default";
ArrayList<String> switches = new ArrayList<String>();
switches.add("--user-data-dir=" + chromeProfile);
capabilities.setCapability("chrome.switches", switches);
WebDriver driver = new ChromeDriver(capabilities);
driver.get("http://www.google.com");
它开始很好,工作完美,但我想加载默认配置文件,因为我想在启用某些扩展并测试某些首选项的情况下对其进行测试。
有没有人知道为什么这段代码不起作用?
我已经用Selenium 2.29.1和2.28.0测试了它,在Windows 7 x64上用chromedriver 26.0.1383.0测试了它。