.getPerformanceMetrics() Suggest edits
Since: 2.2.0Get the performance metrics from the browser. Metrics collection only begin after enablePerformanceMetrics()
command is called.
Usage
.getPerformanceMetrics(callback)
Example
describe('collect performance metrics', function() {
it('enables the metrics collection, does some stuff and collects the metrics', function() {
browser
.enablePerformanceMetrics()
.navigateTo('https://www.google.com')
.getPerformanceMetrics((result) => {
if (result.status === 0) {
const metrics = result.value;
console.log(metrics);
}
});
});
});
Parameters
Name | Type | description |
---|---|---|
callback |
function | Callback function called with an object containing the performance metrics as argument. |
Returns
Type | description |
---|---|
Promise<object> | Metrics collected between the last call to |