I would like to capture the Net panel output from Firebug while running a test through WebDriver. I was thinking of doing this using NetExport to dump the info to a har file
To run Firebug within Selenium WebDriver using Java:
Actions action = new Actions(driver); action.sendKeys(Keys.F12).build().perform();