我想捕捉屏幕的http://www.flipkart.com使用硒與Firefox。硒屏幕捕捉 - 圖像不可用
public class App {
private static final String APP_URL = "http://www.flipkart.com";
public static void main(String[] args) {
WebDriver webDriver = null;
try {
webDriver = new FirefoxDriver();
webDriver.get(APP_URL);
webDriver.manage().window().maximize();
if (webDriver instanceof TakesScreenshot) {
TakesScreenshot screenshot = (TakesScreenshot) webDriver;
File imageFile = screenshot.getScreenshotAs(OutputType.FILE);
FileUtils.copyFile(imageFile, new File(
"C:\\Captures\\captured.png"));
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (webDriver != null) {
webDriver.quit();
}
}
}
}
它需要整頁的屏幕截圖,但它顯示的內頁圖像許多其他圖像不可用。我無法糾正它。幫我。
這工作完美,似乎是頁面滾動時加載圖像 –