我正在运行 webdriver 测试以在 IE8/WinXP 机器上捕获屏幕截图。代码很简单——
WebDriver driver = new InternetExplorerDriver();
driver.get("http://www.google.com/");
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(scrFile, new File("c:\\tmp\\screenshot.png"));
当我运行它时,会生成一个大小为 0KB 的 screenshot.png 文件。我可以轻松地为所有其他浏览器生成屏幕截图,也可以在 IE8 上为 Win7 生成屏幕截图。它仅适用于 WinXP 上的 IE8。任何指针?