import "github.com/tebeka/selenium/log"
Package log provides logging-related configuration types and constants.
const CapabilitiesKey = "goog:loggingPrefs"
CapabilitiesKey is the key for the logging preferences entry in the JSON structure representing WebDriver capabilities.
Note that the W3C spec does not include logging right now, and starting with Chrome 75, "loggingPrefs" has been changed to "goog:loggingPrefs"
Capabilities is the map to include in the WebDriver capabilities structure to configure logging.
Level represents a logging level of different components in the browser, the driver, or any intermediary WebDriver servers.
See the documentation of each driver for what browser specific logging components are available.
const ( Off Level = "OFF" Severe Level = "SEVERE" Warning Level = "WARNING" Info Level = "INFO" Debug Level = "DEBUG" All Level = "ALL" )
The valid log levels.
Message is a log message returned from the Log method.
Type represents a component capable of logging.
const ( Server Type = "server" Browser Type = "browser" Client Type = "client" Driver Type = "driver" Performance Type = "performance" Profiler Type = "profiler" )
The valid log types.
Package log imports 1 packages (graph) and is imported by 4 packages. Updated 2019-08-05. Refresh now. Tools for package owners.