{ "$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" } } } }