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
The newest version!
package com.automation.remarks.video;
import static java.io.File.separator;
import static java.lang.System.getProperty;
/**
* Created by sergey on 4/13/16.
*/
public class VideoConfiguration {
private VideoConfiguration() {
}
private static String FOLDER = getProperty("user.dir") + separator + "recordings";
public static String VIDEO_FOLDER = getProperty("video.folder", FOLDER);
public static String VIDEO_ENABLED = getProperty("video.enabled", "true");
}