8.36.0 • Published 4 days ago

@wdio/devtools-service v8.36.0

Weekly downloads
34,893
License
MIT
Repository
github
Last release
4 days ago

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.

Since Firefox 86, a subset of Chrome DevTools Protocol has been implemented by passing the capability "moz:debuggerAddress": true.

Note: this service currently only supports Chrome v63 and up, Chromium, and Firefox 86 and up! Given that cloud vendors don't expose access to the Chrome DevTools Protocol this service also usually only works when running tests locally or through a Selenium Grid v4 or higher.

Installation

The easiest way is to keep @wdio/devtools-service as a devDependency in your package.json, via:

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:

// wdio.conf.js
export const config = {
    // ...
    services: ['devtools'],
    // ...
};

Usage

The @wdio/devtools-service offers you a variety of features that helps you to automate Chrome beyond the WebDriver protocol. It gives you access to the Chrome DevTools protocol as well as to a Puppeteer instance that you can use to automate Chrome with the Puppeteer automation interface.

Performance Testing

The DevTools service allows you to capture performance data from every page load or page transition that was caused by a click. To enable it call browser.enablePerformanceAudits(<options>). After you are done capturing all necessary performance data disable it to revert the throttling settings, e.g.:

import assert from 'node:assert'

describe('JSON.org page', () => {
    before(async () => {
        await browser.enablePerformanceAudits()
    })

    it('should load within performance budget', async () => {
        /**
         * this page load will take a bit longer as the DevTools service will
         * capture all metrics in the background
         */
        await browser.url('http://json.org')

        let metrics = await browser.getMetrics()
        assert.ok(metrics.speedIndex < 1500) // check that speedIndex is below 1.5ms

        let score = await browser.getPerformanceScore() // get Lighthouse Performance score
        assert.ok(score >= .99) // Lighthouse Performance score is at 99% or higher

        $('=Esperanto').click()

        metrics = await browser.getMetrics()
        assert.ok(metrics.speedIndex < 1500)
        score = await browser.getPerformanceScore()
        assert.ok(score >= .99)
    })

    after(async () => {
        await browser.disablePerformanceAudits()
    })
})

You can emulate a mobile device by using the emulateDevice command, throttling CPU and network as well as setting mobile as form factor:

await browser.emulateDevice('iPhone X')
await browser.enablePerformanceAudits({
    networkThrottling: 'Good 3G',
    cpuThrottling: 4,
    formFactor: 'mobile'
})

The following commands with their results are available:

getMetrics

Get most common used performance metrics.

console.log(await browser.getMetrics())
/**
 * { timeToFirstByte: 566,
 *   serverResponseTime: 566,
 *   domContentLoaded: 3397,
 *   firstVisualChange: 2610,
 *   firstPaint: 2822,
 *   firstContentfulPaint: 2822,
 *   firstMeaningfulPaint: 2822,
 *   largestContentfulPaint: 2822,
 *   lastVisualChange: 15572,
 *   interactive: 6135,
 *   load: 8429,
 *   speedIndex: 3259,
 *   totalBlockingTime: 31,
 *   maxPotentialFID: 161,
 *   cumulativeLayoutShift: 2822 }
 */

getDiagnostics

Get some useful diagnostics about the page load.

console.log(await browser.getDiagnostics())
/**
 * { numRequests: 8,
 *   numScripts: 0,
 *   numStylesheets: 0,
 *   numFonts: 0,
 *   numTasks: 237,
 *   numTasksOver10ms: 5,
 *   numTasksOver25ms: 2,
 *   numTasksOver50ms: 2,
 *   numTasksOver100ms: 0,
 *   numTasksOver500ms: 0,
 *   rtt: 147.20600000000002,
 *   throughput: 47729.68474448835,
 *   maxRtt: 176.085,
 *   maxServerLatency: 1016.813,
 *   totalByteWeight: 62929,
 *   totalTaskTime: 254.07899999999978,
 *   mainDocumentTransferSize: 8023 }
 */

getMainThreadWorkBreakdown

Returns a list with a breakdown of all main thread task and their total duration.

console.log(await browser.getMainThreadWorkBreakdown())
/**
 * [ { group: 'styleLayout', duration: 130.59099999999998 },
 *   { group: 'other', duration: 44.819 },
 *   { group: 'paintCompositeRender', duration: 13.732000000000005 },
 *   { group: 'parseHTML', duration: 3.9080000000000004 },
 *   { group: 'scriptEvaluation', duration: 2.437999999999999 },
 *   { group: 'scriptParseCompile', duration: 0.20800000000000002 } ]
 */

getPerformanceScore

Returns the Lighthouse Performance Score which is a weighted mean of the following metrics: firstContentfulPaint, speedIndex, largestContentfulPaint, cumulativeLayoutShift, totalBlockingTime, interactive, maxPotentialFID or cumulativeLayoutShift.

console.log(await browser.getPerformanceScore())
/**
 * 0.897826278457836
 */

enablePerformanceAudits

Enables auto performance audits for all page loads that are cause by calling the url command or clicking on a link or anything that causes a page load. You can pass in a config object to determine some throttling options. The default throttling profile is Good 3G network with a 4x CPU trottling.

await browser.enablePerformanceAudits({
    networkThrottling: 'Good 3G',
    cpuThrottling: 4,
    cacheEnabled: true,
    formFactor: 'mobile'
})

The following network throttling profiles are available: offline, GPRS, Regular 2G, Good 2G, Regular 3G, Good 3G, Regular 4G, DSL, Wifi and online (no throttling).

Device Emulation

The service allows you to emulate a specific device type. If set, the browser viewport will be modified to fit the device capabilities as well as the user agent will set according to the device user agent. To set a predefined device profile you can run:

await browser.emulateDevice('iPhone X')
// or `browser.emulateDevice('iPhone X', { inLandscape: true })` if you want to be in landscape mode
// or `browser.emulateDevice('iPhone X', { osVersion: "15.0" })` if you want to use emulated device with custom OS version

Available predefined device profiles are: Blackberry PlayBook, BlackBerry Z30, Galaxy Note 3, Galaxy Note II, Galaxy S III, Galaxy S5, iPad, iPad Mini, iPad Pro, iPhone 4, iPhone 5, iPhone 6, iPhone 6 Plus, iPhone 7, iPhone 7 Plus, iPhone 8, iPhone 8 Plus, iPhone SE, iPhone X, JioPhone 2, Kindle Fire HDX, LG Optimus L70, Microsoft Lumia 550, Microsoft Lumia 950, Nexus 10, Nexus 4, Nexus 5, Nexus 5X, Nexus 6, Nexus 6P, Nexus 7, Nokia Lumia 520, Nokia N9, Pixel 2, Pixel 2 XL

You can also define your own device profile by providing an object as parameter like in the following example:

await browser.emulateDevice({
    viewport: {
        width: 550, // <number> page width in pixels.
        height: 300, // <number> page height in pixels.
        deviceScaleFactor: 1, //  <number> Specify device scale factor (can be thought of as dpr). Defaults to 1
        isMobile: true, // <boolean> Whether the meta viewport tag is taken into account. Defaults to false
        hasTouch: true, // <boolean> Specifies if viewport supports touch events. Defaults to false
        isLandscape: true // <boolean> Specifies if viewport is in landscape mode. Defaults to false
    },
    userAgent: 'my custom user agent'
})

Note

This only works if you don't use mobileEmulation within capabilities['goog:chromeOptions']. If mobileEmulation is present the call to browser.emulateDevice() won't do anything.

PWA Testing

With the checkPWA command you can validate if your webapp is compliant to latest web standards when it comes to progressive web apps. It checks:

  • whether your app is installable
  • provides a service worker
  • has a splash screen
  • provides apple touch and maskable icons
  • can be served on mobile devices

If you are not interested in one of these checks you can pass in a list of checks you like to run. The passed property will return true if all checks pass. If they fail you can use the details property to enrich your failure message with details of the failure.

// open page first
await browser.url('https://webdriver.io')
// validate PWA
const result = await browser.checkPWA()
expect(result.passed).toBe(true)

Capture Code Coverage

The service offers you to capture the code coverage of your application under test. To do so you need to enable this feature as part of the service settings:

// wdio.conf.js
services: [
    ['devtools', {
        coverageReporter: {
            enable: true,
            type: 'html', // lcov, json, text
            logDir: __dirname + '/coverage',
            exclude: [/resources/]
        }
    }]
]

Then you have access to a command that calculates the ratio of covered code lines and branches for you to assert within your test:

const coverage = await browser.getCoverageReport()
expect(coverage.lines.total).toBeAbove(0.9)
expect(coverage.statements.total).toBeAbove(0.9)
expect(coverage.functions.total).toBeAbove(0.9)
expect(coverage.branches.total).toBeAbove(0.9)

Chrome DevTools Access

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', async () => {
    /**
     * enable necessary domains
     */
    await browser.cdp('Profiler', 'enable')
    await browser.cdp('Debugger', 'enable')

    /**
     * start test coverage profiler
     */
    await browser.cdp('Profiler', 'startPreciseCoverage', {
        callCount: true,
        detailed: true
    })

    await browser.url('http://google.com')

    /**
     * capture test coverage
     */
    const { result } = await browser.cdp('Profiler', 'takePreciseCoverage')
    const coverage = result.filter((res) => res.url !== '')
    console.log(coverage)
})

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 = await browser.getNodeId('body')
console.log(nodeId) // outputs: 4
const nodeId = await browser.getNodeIds('img')
console.log(nodeId) // outputs: [ 40, 41, 42, 43, 44, 45 ]

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).

await browser.startTracing()

endTracing Command

Stop tracing the browser.

await 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.

import fs from 'node:fs/promises'

await browser.startTracing()
await browser.url('http://json.org')
await browser.endTracing()

await fs.writeFile('/path/to/tracelog.json', JSON.stringify(browser.getTraceLogs()))

getPageWeight Command

Returns page weight information of the last page load.

await browser.startTracing()
await browser.url('https://webdriver.io')
await browser.endTracing()

console.log(await browser.getPageWeight())
// outputs:
// { pageWeight: 2438485,
//   transferred: 1139136,
//   requestCount: 72,
//   details: {
//       Document: { size: 221705, encoded: 85386, count: 11 },
//       Stylesheet: { size: 52712, encoded: 50130, count: 2 },
//       Image: { size: 495023, encoded: 482433, count: 36 },
//       Script: { size: 1073597, encoded: 322854, count: 15 },
//       Font: { size: 84412, encoded: 84412, count: 5 },
//       Other: { size: 1790, encoded: 1790, count: 2 },
//       XHR: { size: 509246, encoded: 112131, count: 1 } }
// }

Setting Download Paths for the Browser

The cdp command can be used to call the Page.setDownloadBehavior command of Devtools Protocol to set the behavior when downloading a file. Make sure the downloadPath is an absolute path and the browser.cdp() call is made before the file is downloaded.

await browser.cdp('Page', 'setDownloadBehavior', {
    behavior: 'allow',
    downloadPath: '/home/root/webdriverio-project/',
});

Access Puppeteer Instance

The service uses Puppeteer for its automation under the hood. You can get access to the used instance by calling the getPuppeteer command. Note: Puppeteer commands are async and either needs to be called within the call command or handled via async/await:

describe('use Puppeteer', () => {
    it('by wrapping commands with call', () => {
        await browser.url('http://json.org')

        const puppeteer = await browser.getPuppeteer()
        const page = await browser.call(() => puppeteer.pages())[0]
        console.log(await browser.call(() => page.title()))
    })
})

Event Listener

In order to capture network events in the browser you can register an event listener to the Chrome DevTools. A full list of available CDP Network Events.

it('should listen on network events', () => {
    await browser.cdp('Network', 'enable')

    await browser.on('Network.requestWillBeSent', (event) => {
        console.log(`Request: ${event.request.method} ${event.request.url}`);
    });
    await browser.on('Network.responseReceived', (event) => {
        console.log(`Response: ${event.response.status} ${event.response.url}`);
    });
    await browser.on('Network.loadingFailed', (event) => {
        console.log(`Request failed: ${event.errorText}`);
    });

    await browser.url('https://www.google.com')
})

For more information on WebdriverIO see the homepage.

8.36.0

4 days ago

9.0.0-alpha.78

9 days ago

9.0.0-alpha.59

19 days ago

9.0.0-alpha.64

19 days ago

8.35.0

27 days ago

8.35.1

27 days ago

9.0.0-alpha.9

1 month ago

8.34.0

1 month ago

8.34.1

1 month ago

9.0.0-alpha.0

1 month ago

8.33.1

1 month ago

7.36.0

1 month ago

8.33.0

1 month ago

8.32.4

1 month ago

8.32.3

2 months ago

8.32.2

2 months ago

8.32.1

2 months ago

8.32.0

2 months ago

7.35.0

2 months ago

8.31.1

2 months ago

8.31.0

2 months ago

8.30.0

2 months ago

8.29.7

2 months ago

8.29.3

3 months ago

8.29.1

3 months ago

8.29.0

3 months ago

8.28.8

3 months ago

8.28.6

3 months ago

8.28.4

3 months ago

8.28.2

3 months ago

8.28.0

3 months ago

8.27.2

3 months ago

7.34.0

4 months ago

8.27.0

4 months ago

8.26.3

4 months ago

8.26.2

4 months ago

8.26.1

4 months ago

8.26.1-alpha.1

4 months ago

8.26.0

4 months ago

8.24.12

4 months ago

8.24.9

4 months ago

8.19.0

6 months ago

7.32.4

8 months ago

7.32.1

9 months ago

7.32.3

9 months ago

7.32.2

9 months ago

8.13.13

9 months ago

8.13.10

9 months ago

8.13.12

9 months ago

8.15.10

8 months ago

7.33.0

6 months ago

8.16.16

7 months ago

8.16.17

7 months ago

8.16.18

7 months ago

8.16.19

7 months ago

8.16.10

7 months ago

8.16.11

7 months ago

8.16.12

7 months ago

8.16.14

7 months ago

8.16.15

7 months ago

8.16.20

7 months ago

8.16.22

6 months ago

8.20.0

6 months ago

8.20.3

6 months ago

8.20.4

6 months ago

8.20.5

6 months ago

8.21.0

6 months ago

8.11.3

9 months ago

8.22.0

5 months ago

8.22.1

5 months ago

8.12.1

9 months ago

8.12.3

9 months ago

8.24.6

5 months ago

8.23.0

5 months ago

8.23.1

5 months ago

8.23.2

5 months ago

8.23.3

5 months ago

8.23.4

5 months ago

8.23.5

5 months ago

8.13.1

9 months ago

8.13.0

9 months ago

8.13.3

9 months ago

8.13.4

9 months ago

8.24.0

5 months ago

8.24.1

5 months ago

8.24.2

5 months ago

8.24.3

5 months ago

8.24.4

5 months ago

8.24.5

5 months ago

8.14.0

9 months ago

8.14.2

9 months ago

8.14.1

9 months ago

8.14.3

9 months ago

8.14.6

8 months ago

8.15.0

8 months ago

8.15.4

8 months ago

8.15.7

8 months ago

8.15.6

8 months ago

8.15.9

8 months ago

8.15.8

8 months ago

8.16.0

8 months ago

8.16.2

8 months ago

8.16.4

7 months ago

8.16.3

8 months ago

8.16.6

7 months ago

8.16.5

7 months ago

8.16.7

7 months ago

8.16.9

7 months ago

8.17.0

6 months ago

8.18.0

6 months ago

8.18.2

6 months ago

7.18.0

2 years ago

7.18.1

2 years ago

8.11.1

10 months ago

8.11.0

10 months ago

8.11.2

10 months ago

8.2.6

1 year ago

8.2.3

1 year ago

8.2.2

1 year ago

8.2.4

1 year ago

7.21.0

2 years ago

8.0.0-alpha.411

2 years ago

7.29.1

1 year ago

7.29.0

1 year ago

8.0.0-alpha.412

2 years ago

8.1.0

1 year ago

8.1.2

1 year ago

8.0.0-alpha.537

1 year ago

7.20.8-alpha.219

2 years ago

7.17.0

2 years ago

7.32.0

10 months ago

8.0.0-alpha.620

1 year ago

7.17.3

2 years ago

7.17.4

2 years ago

8.0.0-alpha.621

1 year ago

8.0.0-alpha.507

1 year ago

8.0.0-alpha.505

1 year ago

8.0.0-alpha.504

1 year ago

8.0.0-alpha.629

1 year ago

8.0.0-alpha.508

1 year ago

8.3.5

1 year ago

8.3.8

1 year ago

7.20.0

2 years ago

8.3.2

1 year ago

8.3.1

1 year ago

8.3.3

1 year ago

7.20.6

2 years ago

7.20.5

2 years ago

7.28.0

1 year ago

7.20.8

2 years ago

7.20.7

2 years ago

7.20.2

2 years ago

8.3.9

1 year ago

7.20.1

2 years ago

7.20.4

2 years ago

7.20.3

2 years ago

8.3.10

1 year ago

8.0.0-alpha.631

1 year ago

8.3.11

1 year ago

8.0.0-alpha.630

1 year ago

7.28.1

1 year ago

7.20.9

2 years ago

8.0.0-alpha.512

1 year ago

8.0.0-alpha.518

1 year ago

8.2.1

1 year ago

8.0.0-alpha.516

1 year ago

8.2.0

1 year ago

7.31.1

1 year ago

8.0.0-alpha.565

1 year ago

8.0.0-alpha.563

1 year ago

8.0.0-alpha.327

2 years ago

8.0.0-alpha.329

2 years ago

8.0.0-alpha.328

2 years ago

8.4.0

1 year ago

7.23.0

2 years ago

8.0.0-alpha.213

2 years ago

8.0.0-alpha.331

2 years ago

8.0.0-alpha.577

1 year ago

8.3.0

1 year ago

8.0.0-alpha.219

2 years ago

8.0.0-alpha.330

2 years ago

7.19.5

2 years ago

7.19.6

2 years ago

7.19.3

2 years ago

7.19.4

2 years ago

8.0.0-alpha.547

1 year ago

7.19.1

2 years ago

7.19.2

2 years ago

7.19.0

2 years ago

7.19.7

2 years ago

8.5.6

1 year ago

8.5.5

1 year ago

8.5.1

1 year ago

8.5.8

1 year ago

7.22.0

2 years ago

8.5.7

1 year ago

8.5.9

1 year ago

8.0.0-alpha.558

1 year ago

8.0.0-alpha.365

2 years ago

8.0.0-alpha.243

2 years ago

8.0.0-alpha.249

2 years ago

8.6.3

1 year ago

8.6.2

1 year ago

8.6.1

1 year ago

8.6.0

1 year ago

7.25.1

2 years ago

7.25.0

2 years ago

7.25.2

2 years ago

8.6.7

1 year ago

8.6.6

1 year ago

8.6.9

1 year ago

8.0.0-alpha.240

2 years ago

8.6.8

1 year ago

7.25.4

1 year ago

8.0.10

1 year ago

8.0.11

1 year ago

8.0.14

1 year ago

8.0.0-alpha.589

1 year ago

8.0.13

1 year ago

8.7.0

1 year ago

7.24.1

2 years ago

7.24.0

2 years ago

8.0.0-alpha.598

1 year ago

8.0.0-alpha.239

2 years ago

8.0.0-alpha.593

1 year ago

8.0.0-alpha.600

1 year ago

8.0.0-alpha.607

1 year ago

8.8.1

1 year ago

8.8.0

1 year ago

8.0.8

1 year ago

8.8.2

1 year ago

8.0.7

1 year ago

8.0.6

1 year ago

8.8.8

12 months ago

7.27.0

1 year ago

8.8.4

1 year ago

8.8.7

12 months ago

8.8.6

12 months ago

8.0.0-alpha.619

1 year ago

7.30.1

1 year ago

7.30.0

1 year ago

7.30.2

1 year ago

8.10.0

12 months ago

8.10.2

11 months ago

8.10.1

11 months ago

8.10.4

11 months ago

8.10.6

11 months ago

8.10.5

11 months ago

8.10.7

11 months ago

8.9.0

12 months ago

8.1.3

1 year ago

7.26.0

1 year ago

8.0.1

1 year ago

8.0.0

1 year ago

8.0.2

1 year ago

7.16.15

2 years ago

7.16.16

2 years ago

7.16.13

2 years ago

7.16.14

2 years ago

7.16.11

2 years ago

7.16.12

2 years ago

7.16.10

2 years ago

7.16.1

2 years ago

7.16.8

2 years ago

7.16.9

2 years ago

7.16.6

2 years ago

7.16.7

2 years ago

7.16.4

2 years ago

7.16.5

2 years ago

7.16.2

2 years ago

7.16.3

2 years ago

7.16.0

2 years ago

7.14.0

3 years ago

7.14.1

3 years ago

7.13.2

3 years ago

7.13.1

3 years ago

7.13.0

3 years ago

7.12.5

3 years ago

7.12.4

3 years ago

7.12.3

3 years ago

7.12.2

3 years ago

7.12.1

3 years ago

7.12.0

3 years ago

7.11.1

3 years ago

7.11.0

3 years ago

7.10.1

3 years ago

7.10.0

3 years ago

7.9.1

3 years ago

7.9.0

3 years ago

7.8.0

3 years ago

7.7.8

3 years ago

7.7.7

3 years ago

7.7.5

3 years ago

7.7.6

3 years ago

7.7.4

3 years ago

7.7.0

3 years ago

7.7.3

3 years ago

7.7.2

3 years ago

7.5.3

3 years ago

7.5.2

3 years ago

7.5.1

3 years ago

7.5.0

3 years ago

7.5.7

3 years ago

7.5.6

3 years ago

7.6.1

3 years ago

7.6.0

3 years ago

7.4.6

3 years ago

7.4.5

3 years ago

7.4.2

3 years ago

7.4.1

3 years ago

7.4.0

3 years ago

7.3.1

3 years ago

7.3.0

3 years ago

7.2.3

3 years ago

7.2.2

3 years ago

7.2.1

3 years ago

7.2.0

3 years ago

7.1.1

3 years ago

7.1.0

3 years ago

7.0.8

3 years ago

7.0.9

3 years ago

7.0.7

3 years ago

7.0.5

3 years ago

7.0.4

3 years ago

7.0.3

3 years ago

7.0.2

3 years ago

7.0.1

3 years ago

7.0.0

3 years ago

7.0.0-beta.4

3 years ago

7.0.0-beta.3

3 years ago

7.0.0-beta.2

3 years ago

7.0.0-beta.1

3 years ago

7.0.0-beta.0

3 years ago

6.12.1

3 years ago

6.12.0

3 years ago

6.11.0

3 years ago

6.10.11

3 years ago

6.10.10

3 years ago

6.10.6

3 years ago

6.10.5

3 years ago

6.10.4

3 years ago

6.10.0

3 years ago

6.8.0

3 years ago

6.7.3

3 years ago

6.6.6

4 years ago

6.6.4

4 years ago

6.6.0

4 years ago

6.5.2

4 years ago

6.4.7

4 years ago

6.4.6

4 years ago

6.4.3

4 years ago

6.4.2

4 years ago

6.4.1

4 years ago

6.4.0

4 years ago

6.3.7

4 years ago

6.3.6

4 years ago

6.3.5

4 years ago

6.3.0

4 years ago

6.1.24

4 years ago

6.1.23

4 years ago

6.1.22

4 years ago

6.1.21

4 years ago

6.1.20

4 years ago

6.1.19

4 years ago

6.1.14

4 years ago

6.1.11

4 years ago

6.1.10

4 years ago

6.1.8

4 years ago

6.1.5

4 years ago

6.0.16

4 years ago

6.0.12

4 years ago

6.0.11

4 years ago

6.0.10

4 years ago

6.0.8

4 years ago

6.0.7

4 years ago

6.0.6

4 years ago

6.0.4

4 years ago

6.0.1

4 years ago

6.0.0-beta.0

4 years ago

6.0.0-alpha.1

4 years ago

6.0.0-alpha.0

4 years ago

5.16.16

4 years ago

5.16.10

4 years ago

5.16.5

4 years ago

5.16.3

4 years ago

5.15.5

4 years ago

5.15.1

5 years ago

5.14.5

5 years ago

5.13.2

5 years ago

5.13.0

5 years ago

5.13.0-alpha.0

5 years ago

5.12.3

5 years ago

5.12.1

5 years ago

5.12.0

5 years ago

5.11.14

5 years ago

5.11.13

5 years ago

5.11.0

5 years ago

5.10.8

5 years ago

5.10.6

5 years ago

5.10.1

5 years ago

5.9.6

5 years ago

5.9.5

5 years ago

5.9.3

5 years ago

5.9.0

5 years ago

5.8.0

5 years ago

5.7.13

5 years ago

5.7.8

5 years ago

5.7.2

5 years ago

5.7.0

5 years ago

5.6.4

5 years ago

5.6.3

5 years ago

5.6.0

5 years ago

5.4.6

5 years ago

5.4.1

5 years ago

5.2.8

5 years ago

5.2.2

5 years ago

5.1.0

5 years ago

5.0.3

5 years ago

5.0.0

5 years ago

5.0.0-beta.16

5 years ago

5.0.0-beta.15

5 years ago

5.0.0-beta.14

5 years ago

5.0.0-beta.13

5 years ago

5.0.0-beta.12

5 years ago

5.0.0-beta.10

5 years ago

5.0.0-beta.9

5 years ago

5.0.0-beta.8

5 years ago

5.0.0-beta.7

5 years ago

5.0.0-beta.6

5 years ago

5.0.0-beta.5

5 years ago