-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathbrowserstack.yml
More file actions
48 lines (40 loc) · 1.83 KB
/
browserstack.yml
File metadata and controls
48 lines (40 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
userName: BROWSERSTACK_USERNAME # or set env var BROWSERSTACK_USERNAME
accessKey: BROWSERSTACK_ACCESS_KEY
projectName: First Java Project
buildName: browserstack-build-1
buildIdentifier: '#${BUILD_NUMBER}'
app: bs://<app-id> # path or bs://<app-id>
# =======================================
# Platforms (Browsers / Devices to test)
# =======================================
# Platforms object contains all the browser / device combinations you want to test on.
# Entire list available here -> (https://www.browserstack.com/list-of-browsers-and-platforms/automate)
platforms:
- deviceName: Google Pixel 9
platformVersion: 15.0
platformName: android
- deviceName: Google Pixel 7
platformVersion: 13.0
platformName: android
# for ios
# platforms:
# - deviceName: iPhone 14
# platformVersion: 16.0
# platformName: ios
# - deviceName: iPhone 13
# platformVersion: 15.0
# platformName: ios
parallelsPerPlatform: 1
browserstackLocal: false
#browserStackLocalOptions:
#Options to be passed to BrowserStack local in-case of advanced configurations
# localIdentifier: # <string> (Default: null) Needed if you need to run multiple instances of local.
# forceLocal: true # <boolean> (Default: false) Set to true if you need to resolve all your traffic via BrowserStack Local tunnel.
# Entire list of arguments available here -> https://www.browserstack.com/docs/automate/selenium/manage-incoming-connections
# ===================
# Debugging features
# ===================
debug: false # <boolean> # Set to true if you need screenshots for every selenium command ran
networkLogs: false # <boolean> Set to true to enable HAR logs capturing
consoleLogs: errors # <string> Remote browser's console debug levels to be printed (Default: errors)
# Available options are `disable`, `errors`, `warnings`, `info`, `verbose` (Default: errors)