Я создал следующий класс для записи видео в Selenium Webriver Automation.
Прежде всего, для этого я использую банку Monte Media (зависимость в POM):
<dependency>
<groupId>com.github.stephenc.monte</groupId>
<artifactId>monte-screen-recorder</artifactId>
<version>0.7.7.0</version>
</dependency>
Класс, который я создал, следующий:
public class Video {
private static final Logger logger = LogManager.getLogger(Video.class);
private Properties prop = null;
private String path = "";
private String prefix = "";
private String extension = "";
private String time = "";
private static ScreenRecorder screenRecorder;
public void setUp() throws Exception {
//Crea una instancia de GraphicsConfiguration para obener la configuración gráfica.
//de la pantalla.
GraphicsConfiguration gc = GraphicsEnvironment//
.getLocalGraphicsEnvironment()//
.getDefaultScreenDevice()//
.getDefaultConfiguration();
//Crea la instancia del grabador de video con la configuración necesaria.
ScreenRecorder screenRecorder = new ScreenRecorder(gc,
new Format(MediaTypeKey, FormatKeys.MediaType.FILE, MimeTypeKey, MIME_AVI),
new Format(MediaTypeKey, FormatKeys.MediaType.VIDEO, EncodingKey, ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE,
CompressorNameKey, ENCODING_AVI_TECHSMITH_SCREEN_CAPTURE,
DepthKey, (int) 24, FrameRateKey, Rational.valueOf(15),
QualityKey, 1.0f,
KeyFrameIntervalKey, (int) (15 * 60)),
new Format(MediaTypeKey, MediaType.VIDEO, EncodingKey, "black",
FrameRateKey, Rational.valueOf(30)),
null);
}
public static void iniciaGrabacion(InternetExplorerDriver driver)throws Exception{
//Método para comenzar de la grabación.
screenRecorder.start();
}
public static void finalizaGrabacion(InternetExplorerDriver driver)throws Exception{
//Método para finalizar de la grabación.
screenRecorder.stop();
}
private void prepareVariables() {
try {
prop = AppConfigUtil.getInstance().getProperties();
} catch (AppConfigException e) {
logger.error(e);
}
path = (String) prop.get("video.path");
prefix = (String) prop.get("video.prefix");
extension = (String) prop.get("video.extension");
LocalDateTime localDateTime = LocalDateTime.now();
time = "" + localDateTime.getYear() + localDateTime.getMonthValue() + localDateTime.getDayOfMonth() + localDateTime.getHour() + localDateTime.getMinute() + localDateTime.getSecond() + localDateTime.getNano();
}
Что я хочу сделать, это вызвать методы static void для начала записи (iniciaGrabacion) и прекратить запись (finalizaGrabacion) из любого другого класса,не в том же классе, который я написал.
public static void iniciaGrabacion(InternetExplorerDriver driver)throws Exception{
//Método para comenzar de la grabación.
screenRecorder.start();
}
public static void finalizaGrabacion(InternetExplorerDriver driver)throws Exception{
//Método para finalizar de la grabación.
screenRecorder.stop();
Я запускаю любой другой класс, вызывая эти методы со следующими строками:
Video.iniciaGrabacion((InternetExplorerDriver)driver);
Для закрытия:
Video.finalizaGrabacion((InternetExplorerDriver)driver);
Но я сталкиваюсь со следующими проблемами:
java.lang.NullPointerException
at cl.chilito.util.report.Video.iniciaGrabacion(Video.java:63)
at cl.chile.automatizacion.casos.prestamos.PrestamoNuevoK.PrestamoNuevoK(PrestamoNuevoK.java:97)
at cl.chile.automatizacion.casos.prestamos.PrestamoNuevoK.testPrestamoNuevoK(PrestamoNuevoK.java:78)
Может ли кто-нибудь помочь мне с этим?