forked from webdriverio/appium-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwdio.ios.app.conf.ts
48 lines (43 loc) · 1.79 KB
/
wdio.ios.app.conf.ts
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
import { join } from 'node:path';
import { config as baseConfig } from './wdio.shared.local.appium.conf.js';
const isGhActions = process.env.GITHUB_ACTION;
export const config: WebdriverIO.Config = {
...baseConfig,
// ============
// Specs
// ============
specs: ['../tests/specs/**/app*.spec.ts'],
// ============
// Capabilities
// ============
// For all capabilities please check
// http://appium.io/docs/en/writing-running-appium/caps/#general-capabilities
capabilities: [
{
// The defaults you need to have in your config
platformName: 'iOS',
maxInstances: 1,
// For W3C the appium capabilities need to have an extension prefix
// This is `appium:` for all Appium Capabilities which can be found here
// http://appium.io/docs/en/writing-running-appium/caps/
//
// NOTE: Change this name according to the Simulator you have created on your local machine
'appium:deviceName': isGhActions ? 'iPhone 14' : 'iPhone 15',
//
// NOTE: Change this version according to the Simulator Version you have created on your local machine
'appium:platformVersion': '17.2',
'appium:orientation': 'PORTRAIT',
'appium:automationName': 'XCUITest',
// The path to the app
'appium:app': join(
process.cwd(),
'apps',
// Change this name according to the app version you downloaded
'ios.simulator.wdio.native.app.v1.0.8.zip'
),
'appium:newCommandTimeout': 240,
// This is needed to wait for the webview context to become available
'appium:webviewConnectTimeout': 5000,
}
]
};