Rapid7 · Schema

SeleniumConfig

SecurityVulnerability ManagementSIEMXDRCloud SecuritySOARApplication Security

Properties

Name Type Description
listen_for_other_scripts boolean
sequential_selenium_script_playback boolean
selenium_port integer
web_driver_for_html string
chrome_binary_file_path string
selenium_file_list array
View JSON Schema on GitHub

JSON Schema

rapid7-seleniumconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SeleniumConfig",
  "title": "SeleniumConfig",
  "properties": {
    "listen_for_other_scripts": {
      "type": "boolean"
    },
    "sequential_selenium_script_playback": {
      "type": "boolean"
    },
    "selenium_port": {
      "type": "integer",
      "format": "int64"
    },
    "web_driver_for_html": {
      "type": "string",
      "enum": [
        "FIREFOX",
        "HTML_UNIT",
        "CHROME"
      ]
    },
    "chrome_binary_file_path": {
      "type": "string"
    },
    "selenium_file_list": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SeleniumFile"
      }
    }
  }
}