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

org.openqa.selenium.devtools.v88.layertree.model.PaintProfile Maven / Gradle / Ivy

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

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

/**
 * Array of timings, one per paint step.
 */
public class PaintProfile {

    private final java.util.List paintProfile;

    public PaintProfile(java.util.List paintProfile) {
        this.paintProfile = java.util.Objects.requireNonNull(paintProfile, "Missing value for PaintProfile");
    }

    private static PaintProfile fromJson(JsonInput input) {
        return input.read(new com.google.common.reflect.TypeToken>() {
        }.getType());
    }

    public String toString() {
        return paintProfile.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy