我将 selenium webdriver 与机器人框架一起使用,但遇到以下问题:
每次测试失败时,我都想制作一个屏幕截图并将此屏幕截图导出到 log.html 文件。
制作截图是一件很容易的事情:
String path;
try {
WebDriver augmentedDriver = new Augmenter().augment(driver);
File source = ((TakesScreenshot) augmentedDriver)
.getScreenshotAs(OutputType.FILE);
path = "./screenshots/" + source.getName();
FileUtils.copyFile(source, new File(path));
} catch (IOException e) {
path = "Failed to capture screenshot: " + e.getMessage();
}
但问题是将屏幕截图导出为html。
在 selenium RC 中,带有屏幕截图的 html 部分如下所示:
<tbody>
<tr>
<td class="time">15:25:44.968</td>
<td class="fail level">FAIL</td>
<td class="message">Value of text field 'xpath=//input' should have been '' but was 'VpomRihh3Xa' Screenshot: </td>
</tr>
<tr>
<td colspan="3">
<img src="./screenshots/screenshot175324738088103861.png">
</td>
</tr>
</tbody>
好的,所以我认为这应该很容易实现,并将我的 captureScreenshot() 函数扩展为:
private String captureScreen() {
String path;
try {
WebDriver augmentedDriver = new Augmenter().augment(driver);
File source = ((TakesScreenshot) augmentedDriver)
.getScreenshotAs(OutputType.FILE);
path = "./screenshots/" + source.getName();
FileUtils.copyFile(source, new File(path));
} catch (IOException e) {
path = "Failed to capture screenshot: " + e.getMessage();
}
StringBuilder builder = new StringBuilder();
builder.append("\n<tr><td colspan=\"3\"><img src=\"").append(path).append("\"></tr></td>");
System.out.println(builder.toString());
return "";
}
但问题是,这种实现不能满足我的需要。它看起来不错,但我得到的只是标签内的一些文本,不会显示为图像。
为了更好地理解它,这里是我得到的截图:
http://gyazo.com/5d7dec1e05443786b5d390054edad3e8 (由于声誉低,无法发布图片)
所以问题是 - 如何将屏幕截图导入机器人框架 log.html 文件?