Skip to content

Latest commit

 

History

History
65 lines (48 loc) · 1.95 KB

README.md

File metadata and controls

65 lines (48 loc) · 1.95 KB

Codeception Extras

Build Status Latest Stable Version Total Downloads License

This package provides extensions for the Codeception test framework.

Available Extensions

WebDriver extensions:

Other Extensions

Requirements

  • PHP >=7.2
  • Codeception

Installation

Install the package via Composer

composer require --dev headsnet/codeception-extras

For extensions that require it, configure the WebDriver module.

WebDriver:
    url: 'http://myapp.com'
    browser: chrome
    host: chrome
    port: 4444
    window_size: false
    capabilities:
        webStorageEnabled: true
        javascriptEnabled: true
        'goog:loggingPrefs':
            performance: 'ALL'
        'goog:chromeOptions':
            perfLoggingPrefs:
                enableNetwork: true

Contributing

Contributions are welcome. Please submit pull requests with one fix/feature per pull request.

Composer scripts are configured for your convenience:

> composer test       # Run test suite
> composer cs         # Run coding standards checks
> composer cs-fix     # Fix coding standards violations
> composer static     # Run static analysis with Phpstan