We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7625ce5 commit 5383bd8Copy full SHA for 5383bd8
1 file changed
src/test/single/codecept.conf.js
@@ -11,6 +11,7 @@ exports.config = {
11
user: BROWSERSTACK_USERNAME,
12
key: BROWSERSTACK_ACCESS_KEY,
13
browser: 'Edge',
14
+ //Mentioned below are the capabilities based on JSON Wire Protocol
15
capabilities: {
16
"os": "Windows",
17
"os_version": "10",
@@ -20,6 +21,18 @@ exports.config = {
20
21
"browserstack.debug": "true",
22
'browserstack.networkLogs': 'true',
23
}
24
+ //We can also use capabilities based on W3C protocol as mentioned below:
25
+ // capabilities: {
26
+ // 'bstack:options' :
27
+ // "os": "Windows",
28
+ // "osVersion": "10",
29
+ // "buildName": "Single_Execution",
30
+ // "sessionName": "Single Test Edge",
31
+ // "debug" : "true",
32
+ // "networkLogs" : "true",
33
+ // },
34
+ // "browserVersion": "latest",
35
+ // }
36
37
},
38
include: {
0 commit comments