From 2cb721a5a400f5e9b79906856c1773740d519aa5 Mon Sep 17 00:00:00 2001 From: Jason Ross Date: Thu, 1 Aug 2024 13:41:20 -0600 Subject: [PATCH] Update example --- docs/web-apps/automated-testing/electron.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/web-apps/automated-testing/electron.md b/docs/web-apps/automated-testing/electron.md index 7e62a6c17e..56bd3d9ae9 100644 --- a/docs/web-apps/automated-testing/electron.md +++ b/docs/web-apps/automated-testing/electron.md @@ -55,12 +55,12 @@ You need to specify Electron as the [`browserName`](https://docs.saucelabs.com/d Because Electron is based on the Chromium browser, you need to specify the options using the `ChromeOptions` class. -Example written in Python with an Electron app test running on Windows 11 with Electron 19 at US West: +Example written in Python with an Electron app test running on Windows 11 with Electron 29 at US West: ```python options = ChromeOptions() options.set_capability('browserName', 'electron') -options.browser_version = '19' +options.browser_version = '29' options.platform_name = 'Windows 11' options.binary_location='\' sauce_options = {}