Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/edmondscommerce/behat-chrome-performance-context
- Owner: edmondscommerce
- Created: 2016-01-13T09:30:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T10:40:25.000Z (over 6 years ago)
- Last Synced: 2024-04-25T01:21:30.879Z (7 months ago)
- Language: PHP
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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```