-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowserstack.yml
More file actions
47 lines (42 loc) · 1.86 KB
/
Copy pathbrowserstack.yml
File metadata and controls
47 lines (42 loc) · 1.86 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
# =============================================================================
# BrowserStack SDK configuration
# Docs: https://www.browserstack.com/docs/automate/selenium/sdk-config-options
#
# Credentials are read from the environment (BROWSERSTACK_USERNAME /
# BROWSERSTACK_ACCESS_KEY) so nothing secret lives in this file. You CAN set
# them here for local runs, but prefer env vars — especially in CI.
# =============================================================================
userName: ${BROWSERSTACK_USERNAME}
accessKey: ${BROWSERSTACK_ACCESS_KEY}
# The set of browser/OS combinations to run against. Each entry becomes one
# parallel session. The SDK fans your test suite out across all of them.
platforms:
- os: Windows
osVersion: "11"
browserName: Chrome
browserVersion: latest
- os: Windows
osVersion: "11"
browserName: Edge
browserVersion: latest
- os: OS X
osVersion: Sonoma
browserName: Safari
browserVersion: latest
# Max number of sessions to run concurrently. Keep this <= your plan's
# parallel limit, otherwise extra sessions queue.
parallelsPerPlatform: 1
# ---- BrowserStack Local -----------------------------------------------------
# Set to true only if you are testing a site that is not publicly reachable
# (localhost, staging behind a firewall). Our sample hits a public URL, so off.
browserstackLocal: false
# ---- Reporting / observability ---------------------------------------------
# Test Observability gives you rich dashboards, flaky-test detection, and
# history. Free to enable; recommended.
testObservability: true
# Names that show up on the BrowserStack dashboard so you can find this run.
projectName: BrowserStack SDK Demo
buildName: selenium-github-actions
# buildIdentifier keeps each CI run distinct. ${BUILD_NUMBER} is provided by
# the GitHub Actions workflow below.
buildIdentifier: "#${BUILD_NUMBER}"