我已经能够在Firefox无头模式下运行selenium测试用例了。但是在截取屏幕截图时,屏幕截图不是网页页面(在测试用例中测试的网页)而是屏幕截图背景(如显示的当前窗口(例如运行测试用例的eclipse IDE))
截图功能
File screenShotFolder = new File("Screenshots");
WebDriver driver = getDriver();
try {
if (!screenShotFolder.exists() && !screenShotFolder.mkdir()) {
getLog().error(
"Cannot create a new file in the intended location. "
+ "" + screenShotFolder.getAbsolutePath());
}
File scrFile =
((TakesScreenshot) driver).getScreenshotAs(OutputType.FILE);
String filePath =
screenShotFolder.getAbsolutePath() + File.separator
+ imageName + ".png";
FileUtils.copyFile(scrFile, new File(filePath));
} catch (Exception e) {
e.printStackTrace();
}
是否需要设置其他“选项”或“参数”?
答案 0 :(得分:1)
使用无头Firefox进行截图应该像普通驱动程序一样工作。
过去我使用了以下方法:
public static String makeScreenshot() {
String fileName = System.currentTimeMillis() + "Test";
File screenshot = Driver.driver.get().getScreenshotAs(OutputType.FILE);
File outputFile = new File("LoggerScreenshots/" + fileName + ".png");
System.out.println(outputFile.getAbsolutePath());
try {
FileUtils.copyFile(screenshot, outputFile);
} catch (IOException e) {
e.printStackTrace();
}
return outputFile.getName();
}
在测试执行失败时调用它:
答案 1 :(得分:1)
以下是您仍然可以使用的方式
from selenium import webdriver
from selenium.webdriver.firefox.options import Options
options = Options()
options.add_argument( "--headless" )
# options.add_argument( "--screenshot test.jpg http://google.com/" )
driver = webdriver.Firefox( firefox_options=options )
driver.get('http://google.com/')
driver.save_screenshot('test.png')
print driver.title
print driver.current_url
driver.quit()
sys.exit()