Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/edmondscommerce/behat-chrome-performance-context

Google Logging context
https://github.com/edmondscommerce/behat-chrome-performance-context

Last synced: 3 days ago
JSON representation

Google Logging context

Awesome Lists containing this project

README

        

# Behat Chrome Performance Context
## By [Edmonds Commerce](https://www.edmondscommerce.co.uk)

Chrome performance monitoring including the checking of broken links and file download cumulative sizes

### Installation

Install via composer

"edmondscommerce/behat-chrome-performance-context": "~1.1"

### Include Context in Behat Configuration

```
default:
# ...
extensions:
Behat\MinkExtension:
sessions:
selenium_chrome_session:
selenium2:
browser: chrome
capabilities:
extra_capabilities: { "chromeOptions": { "args": ["--start-maximized", "--test-type"], perfLoggingPrefs: { 'traceCategories': 'blink.console,disabled-by-default-devtools.timeline' } }, "loggingPrefs": { "performance": "ALL" } }
suites:
default:
# ...
contexts:
- # ...
- EdmondsCommerce\BehatChromePerformance\ChromePerformanceContext

```