
com.automation.remarks.video.VideoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of video-recorder Show documentation
Show all versions of video-recorder Show documentation
Video Recorder is a library that allows to record selenium tests
package com.automation.remarks.video;
import java.io.File;
/**
* Created by sergey on 4/13/16.
*/
public class VideoConfiguration {
private VideoConfiguration() {
}
public static final String FOLDER = System.getProperty("video.home", System.getProperty("user.dir"));
public static final String RECORDINGS_FOLDER = System.getProperty("video.folder", "recordings");
public static final String VIDEO_FOLDER = FOLDER + File.separator + RECORDINGS_FOLDER;
public static final String VIDEO_ENABLED = System.getProperty("video.enabled", "true");
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy