问题描述
- Seleinum 截图应用 空白图片
-
最近应用Seleinum中的截图功能完成某个需求,找了很多资料,比如自动打开百度,搜索信息的截图等等截图方法:
/**
* 截图方法
*
* @param drivername
* @param filename
*/
public static void snapshot(TakesScreenshot drivername, String filename) {
// this method will take screen shot ,require two parameters ,one is
// driver name, another is file nameFile scrFile = (File) drivername.getScreenshotAs(OutputType.FILE); // Now you can do whatever you need to do with it, for example copy // somewhere try { System.out.println("save snapshot path is:E:/test/" + filename); FileUtils.copyFile(scrFile, new File("E:\test\" + filename)); } catch (IOException e) { // TODO Auto-generated catch block System.out.println("Can't save screenshot"); e.printStackTrace(); } finally { System.out.println("screen shot finished"); } }
普通页面的截图都没问题,截图都成功。
但是如果我访问一个嵌入有swf的flash页面的时候,截图确实空白。 前提不是页面加载慢的问题,截图前我设置的等待时间足够长,但还是截图是空白。
各位大拿是否遇到过这个问题。
解决方案
难道没人遇到过吗??
时间: 2024-09-27 12:58:39