WebdriverIO DevTools Service
A WebdriverIO service that allows you to run Chrome DevTools commands in your tests
With Chrome v63 and up the browser started to support multi clients allowing arbitrary clients to access the Chrome DevTools Protocol. This provides interesting opportunities to automate Chrome beyond the WebDriver protocol. With this service you can enhance the wdio browser object to leverage that access and call Chrome DevTools commands within your tests to e.g. intercept requests, throttle network capabilities or take CSS/JS coverage.
Note: this service currently only supports Chrome v63 and up!
Installation
The easiest way is to keep @wdio/devtools-service
as a devDependency in your package.json
.
{
"devDependencies": {
"@wdio/devtools-service": "^5.0.0"
}
}
You can simple do it by:
npm install @wdio/devtools-service --save-dev
Instructions on how to install WebdriverIO
can be found here.
Configuration
In order to use the service you just need to add the service to your service list in your wdio.conf.js
like:
export.config = {
services: ['devtools'],
};
Usage
For now the service allows two different ways to access the Chrome DevTools Protocol:
cdp
Command
The cdp
command is a custom command added to the browser scope that allows you to call directly commands to the protocol.
browser.cdp(<domain>, <command>, <arguments>)
For example if you want to get the JavaScript coverage of your page you can do the following:
it('should take JS coverage', () => {
browser.cdp('Profiler', 'enable')
browser.cdp('Debugger', 'enable')
browser.cdp('Profiler', 'startPreciseCoverage', {
callCount: true,
detailed: true
})
browser.url('http://google.com')
const { result } = browser.cdp('Profiler', 'takePreciseCoverage')
const coverage = result.filter((res) => res.url !== '')
console.log(coverage)
})
cdpConnection
Command
Returns the host and port the Chrome DevTools interface is connected to.
const connection = browser.cdpConnection()
console.log(connection);
getNodeId(selector)
and getNodeIds(selector)
Command
Helper method to get the nodeId of an element in the page. NodeIds are similar like WebDriver node ids an identifier for a node. It can be used as a parameter for other Chrome DevTools methods, e.g. DOM.focus
.
const nodeId = browser.getNodeId('body')
console.log(nodeId)
const nodeId = browser.getNodeIds('img')
console.log(nodeId)
startTracing(categories, samplingFrequency)
Command
Start tracing the browser. You can optionally pass in custom tracing categories (defaults to this list) and the sampling frequency (defaults to 10000
).
browser.startTracing()
endTracing
Command
Stop tracing the browser.
browser.endTracing()
getTraceLogs
Command
Returns the tracelogs that was captured within the tracing period. You can use this command to store the trace logs on the file system to analyse the trace via Chrome DevTools interface.
browser.startTracing()
browser.url('http://json.org')
browser.endTracing()
fs.writeFileSync('/path/to/tracelog.json', JSON.stringify(browser.getTraceLogs()))
getSpeedIndex
Command
Returns the Speed Index and Perceptual Speed Index from the page load that happened between the tracing period.
browser.startTracing()
browser.url('http://json.org')
browser.endTracing()
console.log(browser.getSpeedIndex())
getPerformanceMetrics
Command
Returns an object with a variety of performance metrics.
browser.startTracing()
browser.url('http://json.org')
browser.endTracing()
console.log(browser.getPerformanceMetrics())
getPageWeight
Command
Returns page weight information of the last page load.
browser.startTracing()
browser.url('http://webdriver.io')
browser.endTracing()
console.log(browser.getPageWeight())
Event Listener
In order to capture events in the browser you can register an event listener to a Chrome DevTools event like:
it('should listen on network events', () => {
browser.cdp('Network', 'enable')
browser.on('Network.responseReceived', (params) => {
console.log(`Loaded ${params.response.url}`)
})
browser.url('https://www.google.com')
})
For more information on WebdriverIO see the homepage.