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
# Add your BrowserStack userName and acccessKey here or set BROWSERSTACK_USERNAME and
5
+
# BROWSERSTACK_ACCESS_KEY as env variables
6
+
#userName: BROWSERSTACK_USERNAME
7
+
#accessKey: BROWSERSTACK_ACCESS_KEY
8
+
9
+
# ======================
10
+
# BrowserStack Reporting
11
+
# ======================
12
+
# The following capabilities are used to set up reporting on BrowserStack:
13
+
# Set 'projectName' to the name of your project. Example, Marketing Website
14
+
projectName: Unity Sample App
15
+
# Set `buildName` as the name of the job / testsuite being run
16
+
buildName: iOS build
17
+
# `buildIdentifier` is a unique id to differentiate every execution that gets appended to
18
+
# buildName. Choose your buildIdentifier format from the available expressions:
19
+
# ${BUILD_NUMBER} (Default): Generates an incremental counter with every execution
20
+
# ${DATE_TIME}: Generates a Timestamp with every execution. Eg. 05-Nov-19:30
21
+
# Read more about buildIdentifiers here -> https://www.browserstack.com/docs/automate/selenium/organize-tests
22
+
buildIdentifier: '#${BUILD_NUMBER}'# Supports strings along with either/both ${expression}
23
+
framework: pytest
24
+
source: pytest-browserstack:sample-sdk:v1.0
25
+
26
+
# Set `app` to define the app that is to be used for testing.
27
+
# It can either take the id of any uploaded app or the path of the app directly.
28
+
#app: ./WikipediaSample.apk
29
+
app: ./Payload.ipa #For running local tests
30
+
31
+
# =======================================
32
+
# Platforms (Browsers / Devices to test)
33
+
# =======================================
34
+
# Platforms object contains all the browser / device combinations you want to test on.
35
+
# Entire list available here -> (https://www.browserstack.com/list-of-browsers-and-platforms/automate)
36
+
37
+
platforms:
38
+
- platformName: ios
39
+
deviceName: iPhone 14 Pro Max
40
+
platformVersion: 16
41
+
42
+
# =======================
43
+
# Parallels per Platform
44
+
# =======================
45
+
# The number of parallel threads to be used for each platform set.
46
+
# BrowserStack's SDK runner will select the best strategy based on the configured value
47
+
#
48
+
# Example 1 - If you have configured 3 platforms and set `parallelsPerPlatform` as 2, a total of 6 (2 * 3) parallel threads will be used on BrowserStack
49
+
#
50
+
# Example 2 - If you have configured 1 platform and set `parallelsPerPlatform` as 5, a total of 5 (1 * 5) parallel threads will be used on BrowserStack
51
+
parallelsPerPlatform: 1
52
+
53
+
# ==========================================
54
+
# BrowserStack Local
55
+
# (For localhost, staging/private websites)
56
+
# ==========================================
57
+
# Set browserStackLocal to true if your website under test is not accessible publicly over the internet
58
+
# Learn more about how BrowserStack Local works here -> https://www.browserstack.com/docs/automate/selenium/local-testing-introduction
0 commit comments