我需要捕获 IE 浏览器的完整页面。我正在使用网络驱动程序。请帮助我。
下面的代码仅用于捕获当前窗口。
File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);
// Now you can do whatever you need to do with it, for example copy somewhere
FileUtils.copyFile(scrFile, new File("c:\\tmp\\screenshot.png"));