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

org.openqa.selenium.devtools.debugger.model.BreakpointId 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-rc-1
Show newest version
package org.openqa.selenium.devtools.debugger.model;

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

/**
 * Breakpoint identifier.
 */
public class BreakpointId {

    private final java.lang.String breakpointId;

    public BreakpointId(java.lang.String breakpointId) {
        this.breakpointId = java.util.Objects.requireNonNull(breakpointId, "Missing value for BreakpointId");
    }

    private static BreakpointId fromJson(JsonInput input) {
        return new BreakpointId(input.nextString());
    }

    public String toJson() {
        return breakpointId.toString();
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy