-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathacceptance.suite.yml
More file actions
82 lines (75 loc) · 2.41 KB
/
acceptance.suite.yml
File metadata and controls
82 lines (75 loc) · 2.41 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
# Codeception Test Suite Configuration
# suite for acceptance tests.
# perform tests in browser using the WebDriver or PhpBrowser.
# If you need both WebDriver and PHPBrowser tests - create a separate suite.
class_name: WebGuy
env:
p1:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: chrome
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'os' : 'Windows'
'os_version' : '10'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'
p2:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: firefox
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'os' : 'OS X'
'os_version' : 'El Capitan'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'
p3:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: ie
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'os': 'Windows'
'os_version': '8.1'
'browser_version': '11.0'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'
p4:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: safari
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'os': 'OS X'
'os_version': 'Yosemite'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'