我使用WebDriver Java绑定。创建FirefoxDriver实例使用' firstrun'启动Firefox浏览器。页面:https://www.mozilla.org/en-US/firefox/42.0/firstrun/learnmore/。加载此页面需要一些时间。
我希望Firefox从"开始:关于:空白"使初始化更快。对于Internet Explorer,可以通过以下方式完成:
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability(InternetExplorerDriver.INITIAL_BROWSER_URL, "about:blank");
new InternetExplorerDriver(cap);
如何为Firefox和Chrome做同样的事情?
答案 0 :(得分:1)
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.startup.homepage", "about:blank");
profile.setPreference("startup.homepage_welcome_url", "about:blank");
profile.setPreference("startup.homepage_welcome_url.additional", "about:blank");
WebDriver driver = new FirefoxDriver(profile);