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

org.fluentlenium.utils.chromium.Commands Maven / Gradle / Ivy

package org.fluentlenium.utils.chromium;

/**
 * Commands for the Chromium DevTools API.
 * 

* Additional resources are available at: *

    *
  • https://github.com/WICG/devtools-protocol
  • *
  • https://chromedevtools.github.io/devtools-protocol/
  • *
*/ public enum Commands { /** * Send a command to the DevTools API. */ SEND_COMMAND("SEND_COMMAND", "/session/:sessionId/chromium/send_command"), /** * Send a command to the DevTools API and wait for the response. */ SEND_COMMAND_AND_GET_RESULT("SEND_COMMAND_AND_GET_RESULT", "/session/:sessionId/chromium/send_command_and_get_result"); private final String cmdName; private final String cmdInfo; Commands(String command, String commandInfo) { this.cmdName = command; this.cmdInfo = commandInfo; } public String getCmdName() { return cmdName; } public String getCmdInfo() { return cmdInfo; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy