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

org.openqa.selenium.devtools.v90.runtime.model.ConsoleAPICalled 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.runtime.model;

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

/**
 * Issued when console API was called.
 */
public class ConsoleAPICalled {

    public enum Type {

        LOG("log"),
        DEBUG("debug"),
        INFO("info"),
        ERROR("error"),
        WARNING("warning"),
        DIR("dir"),
        DIRXML("dirxml"),
        TABLE("table"),
        TRACE("trace"),
        CLEAR("clear"),
        STARTGROUP("startGroup"),
        STARTGROUPCOLLAPSED("startGroupCollapsed"),
        ENDGROUP("endGroup"),
        ASSERT("assert"),
        PROFILE("profile"),
        PROFILEEND("profileEnd"),
        COUNT("count"),
        TIMEEND("timeEnd");

        private String value;

        Type(String value) {
            this.value = value;
        }

        public static Type fromString(String s) {
            return java.util.Arrays.stream(Type.values()).filter(rs -> rs.value.equalsIgnoreCase(s)).findFirst().orElseThrow(() -> new org.openqa.selenium.devtools.DevToolsException("Given value " + s + " is not found within Type "));
        }

        public String toString() {
            return value;
        }

        public String toJson() {
            return value;
        }

        private static Type fromJson(JsonInput input) {
            return fromString(input.nextString());
        }
    }

    private final Type type;

    private final java.util.List args;

    private final org.openqa.selenium.devtools.v90.runtime.model.ExecutionContextId executionContextId;

    private final org.openqa.selenium.devtools.v90.runtime.model.Timestamp timestamp;

    private final java.util.Optional stackTrace;

    private final java.util.Optional context;

    public ConsoleAPICalled(Type type, java.util.List args, org.openqa.selenium.devtools.v90.runtime.model.ExecutionContextId executionContextId, org.openqa.selenium.devtools.v90.runtime.model.Timestamp timestamp, java.util.Optional stackTrace, java.util.Optional context) {
        this.type = java.util.Objects.requireNonNull(type, "type is required");
        this.args = java.util.Objects.requireNonNull(args, "args is required");
        this.executionContextId = java.util.Objects.requireNonNull(executionContextId, "executionContextId is required");
        this.timestamp = java.util.Objects.requireNonNull(timestamp, "timestamp is required");
        this.stackTrace = stackTrace;
        this.context = context;
    }

    /**
     * Type of the call.
     */
    public Type getType() {
        return type;
    }

    /**
     * Call arguments.
     */
    public java.util.List getArgs() {
        return args;
    }

    /**
     * Identifier of the context where the call was made.
     */
    public org.openqa.selenium.devtools.v90.runtime.model.ExecutionContextId getExecutionContextId() {
        return executionContextId;
    }

    /**
     * Call timestamp.
     */
    public org.openqa.selenium.devtools.v90.runtime.model.Timestamp getTimestamp() {
        return timestamp;
    }

    /**
     * Stack trace captured when the call was made. The async stack chain is automatically reported for
     * the following call types: `assert`, `error`, `trace`, `warning`. For other types the async call
     * chain can be retrieved using `Debugger.getStackTrace` and `stackTrace.parentId` field.
     */
    public java.util.Optional getStackTrace() {
        return stackTrace;
    }

    /**
     * Console context descriptor for calls on non-default console context (not console.*):
     * 'anonymous#unique-logger-id' for call on unnamed context, 'name#unique-logger-id' for call
     * on named context.
     */
    @Beta()
    public java.util.Optional getContext() {
        return context;
    }

    private static ConsoleAPICalled fromJson(JsonInput input) {
        Type type = null;
        java.util.List args = null;
        org.openqa.selenium.devtools.v90.runtime.model.ExecutionContextId executionContextId = null;
        org.openqa.selenium.devtools.v90.runtime.model.Timestamp timestamp = null;
        java.util.Optional stackTrace = java.util.Optional.empty();
        java.util.Optional context = java.util.Optional.empty();
        input.beginObject();
        while (input.hasNext()) {
            switch(input.nextName()) {
                case "type":
                    type = Type.fromString(input.nextString());
                    break;
                case "args":
                    args = input.read(new com.google.common.reflect.TypeToken>() {
                    }.getType());
                    break;
                case "executionContextId":
                    executionContextId = input.read(org.openqa.selenium.devtools.v90.runtime.model.ExecutionContextId.class);
                    break;
                case "timestamp":
                    timestamp = input.read(org.openqa.selenium.devtools.v90.runtime.model.Timestamp.class);
                    break;
                case "stackTrace":
                    stackTrace = java.util.Optional.ofNullable(input.read(org.openqa.selenium.devtools.v90.runtime.model.StackTrace.class));
                    break;
                case "context":
                    context = java.util.Optional.ofNullable(input.nextString());
                    break;
                default:
                    input.skipValue();
                    break;
            }
        }
        input.endObject();
        return new ConsoleAPICalled(type, args, executionContextId, timestamp, stackTrace, context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy