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

org.openqa.selenium.devtools.v88.domstorage.model.Item Maven / Gradle / Ivy

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

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

/**
 * DOM Storage item.
 */
public class Item {

    private final java.util.List item;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy