Skip to content

Commit

Permalink
Updating Supported Versions of macOS for Simulators (#3040)
Browse files Browse the repository at this point in the history
updates for macos 10.x on sims
  • Loading branch information
mp-sauce authored Dec 12, 2024
1 parent df99485 commit 4fdfe1f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 522 deletions.
6 changes: 3 additions & 3 deletions docs/basics/test-config-annotation/test-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ All examples are for Java, but you can use our Platform Configurator to configur

### Default Selenium Version

By default, Sauce Labs will use the following version of Selenium, depending on your selected combination of browser and operating system. While Selenium 3 is not yet fully implemented as a default version, it is supported for all Chrome and Firefox browsers on Mac and Windows platforms, for Safari 10+ on macOS 10.12 Sierra, and for Microsoft Edge and IE browsers version 10 and above. Currently Sauce Labs supports Selenium 3.4.0+ for Firefox and Safari and Selenium 3.5.0+ for Microsoft Edge and Chrome.
By default, Sauce Labs will use the following version of Selenium, depending on your selected combination of browser and operating system. While Selenium 3 is not yet fully implemented as a default version, it is supported for all Chrome and Firefox browsers on Mac and Windows platforms, for Safari 14+ on macOS 11 and higher, and for Microsoft Edge and IE browsers version 10 and above. Sauce Labs supports Selenium 3.4.0+ for Firefox and Safari and Selenium 3.5.0+ for Microsoft Edge and Chrome.

| Browser Name | Default Selenium Version |
| ----------------- | --------------------------------------------------------- |
Expand Down Expand Up @@ -76,8 +76,8 @@ caps.setCapability("version", "47.0");

```
DesiredCapabilities caps = DesiredCapabilities.safari();
caps.setCapability("platform", "OS X 10.9");
caps.setCapability("version", "7.0");
caps.setCapability("platform", "macOS 11.00");
caps.setCapability("version", "14");
```

#### Android Emulator Phone/Android 5.1
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/test-configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ This setting cannot be used for mobile browsers, as your test will use the defau
Identifies the name of the operating system the browser or mobile device should be running on. You can use this for [dynamic device allocation](/mobile-apps/supported-devices#static-and-dynamic-device-allocation). Values are not case-sensitive (i.e., `"ios"` is the same as `"iOS"`). See the [WebDriver W3C Specification](https://w3c.github.io/webdriver/#dfn-platform-name) for more information.

```java
"platformName": "macOS 10.13"
"platformName": "macOS 11"
```

---
Expand Down
Loading

0 comments on commit 4fdfe1f

Please sign in to comment.