Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ You can follow these steps:

2. Add the _composer.json_ file present under _Parallel Testing_ folder to the root directory of the project.

3. Execute the command `composer.json install` to install the two components mentioned above.
3. Execute the command `php composer.phar install` to install the two components mentioned above.

4. Execute `Robo.phar` and press 'Y' to create an empty _RoboFile.php_.

Expand Down
36 changes: 36 additions & 0 deletions Sample Test/acceptance.suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,40 @@ env:
'os': 'OS X'
'os_version': 'Yosemite'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'

ios:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: iPhone
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'platform': 'MAC'
'device': 'iPhone 6S'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'

android:
modules:
enabled:
- WebDriver
config:
WebDriver:
url: 'http://www.google.com'
host: 'hub.browserstack.com'
port: 80
browser: android
capabilities:
'browserstack.user': '<username>'
'browserstack.key' : '<automate-key>'
'platform': 'ANDROID'
'device': 'Google Nexus 5'
'browserstack.debug': 'true'
'build': 'Sample Codeception Tests'