All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.playtika.testcontainer.selenium.VncRecordingMode Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package com.playtika.testcontainer.selenium;


import org.testcontainers.containers.BrowserWebDriverContainer;

/**
 * See {@link org.testcontainers.containers.BrowserWebDriverContainer.VncRecordingMode}
 */
public enum VncRecordingMode {
    SKIP, RECORD_ALL, RECORD_FAILING;

    public BrowserWebDriverContainer.VncRecordingMode convert() {
        return BrowserWebDriverContainer.VncRecordingMode.valueOf(this.name());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy