去网上下载一个firebug.xpi(对应版本, 我的ff是17,可以使用firebug-1.11.4.xpi,最好使用非firefox浏览器下载,不然提示你直接安装到firefox)
@Before
public void setUp() throws Exception {
/*正常启动firefox
System.setProperty("webdriver.firefox.bin","c:\Program Files\Mozilla Firefox\firefox.exe");
driver = new FirefoxDriver();
*/
//启动带有firebug扩展的firefox
FirefoxProfile firefoxProfile = new FirefoxProfile();
File file = new File("g:\firebug-1.11.4.xpi");//存放firebug的路径
firefoxProfile.addExtension(file);
firefoxProfile.setPreference("extensions.firebug.currentVersion", "1.11.4");
driver = new FirefoxDriver(firefoxProfile);
//启动ie
//driver = new InternetExplorerDriver();
baseUrl = "www.baidu.com";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}