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

org.openqa.selenium.devtools.v92.tracing.model.TracingBackend Maven / Gradle / Ivy

package org.openqa.selenium.devtools.v92.tracing.model;

import org.openqa.selenium.Beta;
import org.openqa.selenium.json.JsonInput;

/**
 * Backend type to use for tracing. `chrome` uses the Chrome-integrated
 * tracing service and is supported on all platforms. `system` is only
 * supported on Chrome OS and uses the Perfetto system tracing service.
 * `auto` chooses `system` when the perfettoConfig provided to Tracing.start
 * specifies at least one non-Chrome data source; otherwise uses `chrome`.
 */
public enum TracingBackend {

    AUTO("auto"), CHROME("chrome"), SYSTEM("system");

    private String value;

    TracingBackend(String value) {
        this.value = value;
    }

    public static TracingBackend fromString(String s) {
        return java.util.Arrays.stream(TracingBackend.values()).filter(rs -> rs.value.equalsIgnoreCase(s)).findFirst().orElseThrow(() -> new org.openqa.selenium.devtools.DevToolsException("Given value " + s + " is not found within TracingBackend "));
    }

    public String toString() {
        return value;
    }

    public String toJson() {
        return value;
    }

    private static TracingBackend fromJson(JsonInput input) {
        return fromString(input.nextString());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy