-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwdio.conf.js
More file actions
83 lines (77 loc) · 1.86 KB
/
wdio.conf.js
File metadata and controls
83 lines (77 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
exports.config = {
// ====================
// Runner Configuration
// ====================
runner: 'local',
fullyParallel: false,
// ==================
// Specify Test Files
// ==================
specs: [
'./test/onboarding.js',
'./test/ratio_conversion.js',
'./test/unit_convertion.js'
],
exclude: [],
suites: {
onboarding: ['./test/onboarding.js'],
ratioconversion: ['./test/ratio_conversion.js'],
unitconversion: ['./test/unit_convertion.js'],
all: [
'./test/onboarding.js',
'./test/ratio_conversion.js',
'./test/unit_convertion.js'
]
},
// ============
// Capabilities
// ============
maxInstances: 1,
capabilities: [
{
platformName: 'Android',
'appium:deviceName': 'R9DN602KDXJ',
'appium:platformVersion': '11.0',
'appium:automationName': 'UiAutomator2',
'appium:app': 'C:/Users/abrha/Downloads/techno-serve[0.0.14].apk',
'appium:appPackage': 'com.example.flutter_template',
'appium:appActivity': 'com.example.flutter_template.MainActivity',
'appium:noReset': true,
'appium:fullContextList': true,
'appium:autoLaunch': true
}
],
// ===================
// Test Configurations
// ===================
logLevel: 'info',
bail: 0,
waitforTimeout: 10000,
connectionRetryTimeout: 120000,
connectionRetryCount: 3,
// ====================
// Services Configuration
// ====================
services: [
['appium', {
args: {
address: 'localhost',
port: 4723
},
command: 'appium'
}]
],
// =========
// Framework
// =========
framework: 'mocha',
reporters: ['spec'],
mochaOpts: {
ui: 'bdd',
timeout: 60000
}
// =====
// Hooks
// =====
// You can add hooks here if needed
};