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

org.openqa.selenium.devtools.v88.profiler.model.ConsoleProfileStarted Maven / Gradle / Ivy

package org.openqa.selenium.devtools.v88.profiler.model;

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

/**
 * Sent when new profile recording is started using console.profile() call.
 */
public class ConsoleProfileStarted {

    private final java.lang.String id;

    private final org.openqa.selenium.devtools.v88.debugger.model.Location location;

    private final java.util.Optional title;

    public ConsoleProfileStarted(java.lang.String id, org.openqa.selenium.devtools.v88.debugger.model.Location location, java.util.Optional title) {
        this.id = java.util.Objects.requireNonNull(id, "id is required");
        this.location = java.util.Objects.requireNonNull(location, "location is required");
        this.title = title;
    }

    public java.lang.String getId() {
        return id;
    }

    /**
     * Location of console.profile().
     */
    public org.openqa.selenium.devtools.v88.debugger.model.Location getLocation() {
        return location;
    }

    /**
     * Profile title passed as an argument to console.profile().
     */
    public java.util.Optional getTitle() {
        return title;
    }

    private static ConsoleProfileStarted fromJson(JsonInput input) {
        java.lang.String id = null;
        org.openqa.selenium.devtools.v88.debugger.model.Location location = null;
        java.util.Optional title = java.util.Optional.empty();
        input.beginObject();
        while (input.hasNext()) {
            switch(input.nextName()) {
                case "id":
                    id = input.nextString();
                    break;
                case "location":
                    location = input.read(org.openqa.selenium.devtools.v88.debugger.model.Location.class);
                    break;
                case "title":
                    title = java.util.Optional.ofNullable(input.nextString());
                    break;
                default:
                    input.skipValue();
                    break;
            }
        }
        input.endObject();
        return new ConsoleProfileStarted(id, location, title);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy