12345678910111213141516171819 |
- # 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.
- actor: AcceptanceTester
- modules:
- enabled:
- - \Helper\Acceptance
- - WebDriver
- - VisualCeption:
- maximumDeviation: 1 # deviation in percent
- saveCurrentImageIfFailure: true # if true, VisualCeption saves the current
- config:
- WebDriver:
- host: 127.0.0.1
- port: 4444
- browser: firefox
|