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

org.openqa.selenium.devtools.v90.domsnapshot.model.ArrayOfStrings Maven / Gradle / Ivy

Go to download

Selenium automates browsers. That's it! What you do with that power is entirely up to you.

There is a newer version: 4.0.0-beta-4
Show newest version
package org.openqa.selenium.devtools.v90.domsnapshot.model;

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

/**
 * Index of the string in the strings table.
 */
public class ArrayOfStrings {

    private final java.util.List arrayOfStrings;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy