You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: examples/capabilities/ReadMe.md
+31-16
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
<!-- SeleniumBase Docs -->
2
2
3
-
<h3><imgsrc="https://seleniumbase.github.io/img/green_logo.png"title="SeleniumBase"width="32" /> Using Desired Capabilities</h3>
3
+
## [<imgsrc="https://seleniumbase.github.io/img/logo6.png"title="SeleniumBase"width="32">](https://github.com/seleniumbase/SeleniumBase/) Using Desired Capabilities
4
4
5
-
You can specify browser capabilities when running SeleniumBase tests on a remote Selenium Grid server such as <ahref="https://www.browserstack.com/automate/capabilities"target="_blank">BrowserStack</a>, <ahref="https://saucelabs.com/products/platform-configurator"target="_blank">Sauce Labs</a>, or another.
5
+
You can specify browser capabilities when running SeleniumBase tests on a remote Selenium Grid server (such as <ahref="https://www.browserstack.com/automate/capabilities"target="_blank">BrowserStack</a> or <ahref="https://saucelabs.com/products/platform-configurator"target="_blank">Sauce Labs</a>).
6
6
7
7
Sample run commands may look like this when run from the [SeleniumBase/examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder: (The browser is now specified in the capabilities file.)
(Parameters: ``--browser=remote``, ``--server=SERVER``, ``--port=PORT``, ``--protocol=PROTOCOL``, and ``--cap_file=CAP_FILE.py``)
18
18
19
-
Here's an example desired capabilities file for BrowserStack:
19
+
Here's an example desired capabilities file for BrowserStack using the newer SDK format in a `.yml` / `.yaml` file:
20
+
21
+
```yml
22
+
platforms:
23
+
- browserName: safari
24
+
osVersion: 17
25
+
deviceName: iPhone 15 Pro Max
26
+
buildIdentifier: ${BUILD_NUMBER}
27
+
parallelsPerPlatform: 1
28
+
projectName: My Project
29
+
browserstackLocal: true
30
+
debug: true
31
+
networkLogs: true
32
+
```
33
+
34
+
Here's an example desired capabilities file for BrowserStack using the legacy JSONWP format in a `.py` file:
20
35
21
36
```python
22
37
desired_cap = {
23
-
"os" : "Windows",
24
-
"os_version" : "11",
25
-
"browser" : "Chrome",
26
-
"browser_version" : "101.0",
27
-
"browserstack.local" : "false",
28
-
"browserstack.debug" : "true",
29
-
"browserstack.selenium_version" : "4.1.2",
38
+
"browser": "Chrome",
39
+
"os": "Windows",
40
+
"os_version": "11",
41
+
"browser_version": "latest",
42
+
"browserstack.console": "info",
43
+
"browserstack.debug": "true",
44
+
"browserstack.networkLogs": "true",
45
+
"browserstack.local": "true",
30
46
}
31
47
```
32
48
@@ -41,12 +57,12 @@ capabilities = {
41
57
}
42
58
```
43
59
44
-
(Note that the browser is now being specified in the capabilities file, rather than with ``--browser=BROWSER`` when using a **remote** Selenium Grid. If using a **local** Selenium Grid, specify the browser, eg: ``--browser=chrome`` or ``--browser=firefox``.)
60
+
(Note that the browser is now being specified in the capabilities file, rather than with ``--BROWSER`` when using a **remote** Selenium Grid. If using a **local** Selenium Grid, specify the browser, eg: ``--firefox``.)
45
61
46
62
<div><b>You can generate specific desired capabilities using:</b></div>
(Each pair must be on a separate line. You can interchange single and double quotes.)
67
83
68
-
You can also swap ``--browser=remote`` with an actual browser, eg ``--browser=chrome``, which will combine the default SeleniumBase desired capabilities with those that were specified in the capabilities file when using ``--cap_file=FILE.py``. Capabilities will override other parameters, so if you set the browser to one thing and the capabilities browser to another, SeleniumBase will use the capabilities browser as the browser.
84
+
You can also swap ``--browser=remote`` with an actual browser, eg ``--browser=chrome``, which will combine the default SeleniumBase desired capabilities with those that were specified in the capabilities file when using ``--cap_file=FILE.py``. Capabilities will override other parameters, so if you set the browser to one thing and the capabilities browser to another, SeleniumBase will use the capabilities browser.
69
85
70
86
You'll need default SeleniumBase capabilities for:
71
87
* Using a proxy server (not the same as a Selenium Grid server)
@@ -74,16 +90,15 @@ You'll need default SeleniumBase capabilities for:
74
90
* Overriding a website's Content Security Policy on Chrome
75
91
* Other possible reasons
76
92
77
-
You can also set browser desired capabilities from a command line string:
78
-
Example:
93
+
You can also set browser desired capabilities from a command-line string. Eg:
Copy file name to clipboardexpand all lines: help_docs/desired_capabilities.md
+27-11
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## [<imgsrc="https://seleniumbase.github.io/img/logo6.png"title="SeleniumBase"width="32">](https://github.com/seleniumbase/SeleniumBase/) Using Desired Capabilities
4
4
5
-
You can specify browser capabilities when running SeleniumBase tests on a remote Selenium Grid server such as <ahref="https://www.browserstack.com/automate/capabilities"target="_blank">BrowserStack</a> or <ahref="https://saucelabs.com/products/platform-configurator"target="_blank">Sauce Labs</a>.
5
+
You can specify browser capabilities when running SeleniumBase tests on a remote Selenium Grid server (such as <ahref="https://www.browserstack.com/automate/capabilities"target="_blank">BrowserStack</a> or <ahref="https://saucelabs.com/products/platform-configurator"target="_blank">Sauce Labs</a>).
6
6
7
7
Sample run commands may look like this when run from the [SeleniumBase/examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder: (The browser is now specified in the capabilities file.)
0 commit comments