com.consol.citrus.selenium.actions.MakeScreenshotAction Maven / Gradle / Ivy
/*
* Copyright 2006-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.consol.citrus.selenium.actions;
import com.consol.citrus.Citrus;
import com.consol.citrus.context.TestContext;
import com.consol.citrus.exceptions.CitrusRuntimeException;
import com.consol.citrus.selenium.endpoint.SeleniumBrowser;
import com.consol.citrus.selenium.endpoint.SeleniumHeaders;
import org.openqa.selenium.OutputType;
import org.openqa.selenium.TakesScreenshot;
import org.springframework.core.io.FileSystemResource;
import org.springframework.util.FileCopyUtils;
import org.springframework.util.StringUtils;
import java.io.File;
import java.io.IOException;
/**
* @author Tamer Erdogan, Christoph Deppisch
* @since 2.7
*/
public class MakeScreenshotAction extends AbstractSeleniumAction {
/** Storage to save screenshot to */
private String outputDir;
/**
* Default constructor.
*/
public MakeScreenshotAction() {
super("screenshot");
}
@Override
protected void execute(SeleniumBrowser browser, TestContext context) {
File screenshot = null;
if (browser.getWebDriver() instanceof TakesScreenshot) {
screenshot = ((TakesScreenshot) browser.getWebDriver()).getScreenshotAs(OutputType.FILE);
} else {
log.warn("Skip screenshot action because web driver is missing screenshot features");
}
if (screenshot != null) {
String testName = "Test";
if (context.getVariables().containsKey(Citrus.TEST_NAME_VARIABLE)) {
testName = context.getVariable(Citrus.TEST_NAME_VARIABLE);
}
context.setVariable(SeleniumHeaders.SELENIUM_SCREENSHOT, testName + "_" + screenshot.getName());
if (StringUtils.hasText(outputDir)) {
try {
File targetDir = new File(context.replaceDynamicContentInString(outputDir));
if (!targetDir.exists()) {
if (!targetDir.mkdirs()) {
throw new CitrusRuntimeException("Failed to create screenshot output directory: " + outputDir);
}
}
FileCopyUtils.copy(screenshot, new File(targetDir, testName + "_" + screenshot.getName()));
} catch (IOException e) {
log.error("Failed to save screenshot to target storage", e);
}
} else {
browser.storeFile(new FileSystemResource(screenshot));
}
}
}
/**
* Gets the outputDir.
*
* @return
*/
public String getOutputDir() {
return outputDir;
}
/**
* Sets the outputDir.
*
* @param outputDir
*/
public void setOutputDir(String outputDir) {
this.outputDir = outputDir;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy