marionette: Capabilities::platform_version optional

Firefox 107 does not include the `platform_version` member in the object
in the `capabilities` member of the response to the `NewSession`
command.
master
Dustin 2023-06-10 21:20:40 -05:00
parent e53c147dfa
commit 56ffd60d5f
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ pub struct Capabilities {
pub webdriver_click: bool,
pub page_load_strategy: String,
pub platform_name: String,
pub platform_version: String,
pub platform_version: Option<String>,
// proxy:
pub set_window_rect: bool,
pub timeouts: Timeouts,