Slide 1

Slide 1 text

Measuring Performance with WebDriver

Slide 2

Slide 2 text

Laba diena! Christian Bromann Senior Lead Software Engineer at Sauce Labs christian-bromann @bromann

Slide 3

Slide 3 text

3034 kb 3.21 s Is the average load of a webpage (Pingdom/2018) of mobile site visits are abandoned if pages take longer than 3 seconds to load. (Study by DoubleClick owned by Google) is the average web page size in 2018, trend: increasing (https://speedcurve.com/blog/web-performance-page-bloat/) 53%

Slide 4

Slide 4 text

“How fast your website loads is critical but often a completely ignored element in any online business and that includes search marketing and search engine optimisation.” —Google

Slide 5

Slide 5 text

#perfmatters

Slide 6

Slide 6 text

“Performance stands out like a ton of diamonds. Nonperformance can always be explained away.” —Harold S. Geneen.

Slide 7

Slide 7 text

Browser Performance How fast does my application load ?

Slide 8

Slide 8 text

8 responseStart - fetchStart = time to first byte (TTFB)

Slide 9

Slide 9 text

9 First Paint (FP) First Contentful Paint (FCP) First Meaningful Paint (FMP) First Paint (FP) first render to the screen First Contentful Paint (FCP) is triggered when any content is painted – i.e. something defined in the DOM First Meaningful Paint (FMP) measures how long it takes for the most meaningful content to be fully rendered on the site. Time To Interactive (TTI) number of seconds from the time the navigation started until the layout is stabilized Time To Interactive (TTI)

Slide 10

Slide 10 text

10 (Source: Google) computes an overall score for how quickly the content painted Speed Index

Slide 11

Slide 11 text

Score Based Other Metric Types Milestone Based Describing a duration between two events Resource Based Describing performance based on a score Describing certain resource limits

Slide 12

Slide 12 text

Are all these metrics important? Yes!

Slide 13

Slide 13 text

Mapping Metrics to User Experience! Is it useful? Has enough content rendered that users can engage with it? Did the navigation start successfully? Has the server responded? Is it happening? Can users interact with the page, or is it still busy loading? Is it usable? Are the interactions smooth and natural, free of lag and jank? Is it delightful? ? ? ? ? https://developers.google.com/web/fundamentals/performance/user-centric-performance-metrics

Slide 14

Slide 14 text

14

Slide 15

Slide 15 text

“Fast forward to today and we see that window.onload doesn’t reflect the user perception as well as it once did.” —Steve Souders

Slide 16

Slide 16 text

Browser Tracing How the browser knows about all this?

Slide 17

Slide 17 text

17

Slide 18

Slide 18 text

18 Contains a list of events from different types that happened during the capturing process, e.g. Duration Events (B - begin, E - end) Complete Events (x) Instant Events (i) Counter Events (C) Sample events (P) Metadata Events (M) Memory Dump Events (V - global, v - process) Other… (see Trace Event Format) Trace data representations can be processed by a Trace Viewer tool like DevTools or Catapult { "name": "myName", "cat": "category.list", "ph": "B", "ts": 12345, "pid": 123, "tid": 456, "args": { "someArg": 1, "anotherArg": { "value": "my value" } } } Event Descriptions:

Slide 19

Slide 19 text

{ "pid": 41316, "tid": 775, "ts": 170385299237, "ph": "I", "cat": "devtools.timeline", "name": "UpdateCounters", "args": { "data": { "jsEventListeners": 31, "nodes": 4089, "documents": 9, "jsHeapSizeUsed": 11140520 } }, "tts": 20811400, "s": "t" }

Slide 20

Slide 20 text

{ "pid": 579, "tid": 775, "ts": 170383426118, "ph": "O", "cat": "disabled-by-default-devtools.screenshot", "name": "Screenshot", "args": { "snapshot": "..." }, "tts": 2879188825, "id": "0x1" }

Slide 21

Slide 21 text

21 Google Lighthouse

Slide 22

Slide 22 text

22

Slide 23

Slide 23 text

WebDriver How browser get automated today?

Slide 24

Slide 24 text

24

Slide 25

Slide 25 text

const elem = $("#myElem") elem.click() Chromedriver Geckodriver IEDriver EdgeDriver SafariDriver Appium Selendroid WebDriverAgent HTTP Selenium Grid

Slide 26

Slide 26 text

V Webdriver.io

Slide 27

Slide 27 text

Chromedriver HTTP browser.url("https://webdriver.io") browser.startTracing() WebSockets WebSockets WebdriverIO using @wdio/devtools-service

Slide 28

Slide 28 text

DEMO Capture Performance Data with WebdriverIO

Slide 29

Slide 29 text

Testing Performance Using Sauce Labs new Performance Feature

Slide 30

Slide 30 text

const elem = $("#myElem") elem.click() Chromedriver Geckodriver IEDriver EdgeDriver SafariDriver Appium Selendroid WebDriverAgent HTTP Selenium Grid

Slide 31

Slide 31 text

const elem = $("#myElem") elem.click() HTTP

Slide 32

Slide 32 text

Shift Testing To The Left

Slide 33

Slide 33 text

Development Staging Production Performance in the Lab Performance in the Real World Existing Solutions Existing Solutions

Slide 34

Slide 34 text

SPEEDO

Slide 35

Slide 35 text

$ npm install -g speedo Install it! $ speedo run https://site.com Run it!

Slide 36

Slide 36 text

DEMO Capture Performance Data with Speedo

Slide 37

Slide 37 text

import { remote } from 'webdriverio'; let browser (async () => { browser = await remote({ user: process.env.SAUCE_USERNAME, key: process.env.SAUCE_ACCESS_KEY, capabilities: { browserName: 'chrome', platformName: 'Windows 10', browserVersion: 'latest', 'sauce:options': { extendedDebugging: true, capturePerformance: true, name: “Performance Test” } } }) await browser.url('https://www.instagram.com/accounts/login') const username = await browser.$('input[name="username"]') await username.setValue('performancetestaccount') const password = await browser.$('input[name="password"]') await password.setValue('testpass') const submitBtn = await browser.$('button[type="submit"]') await submitBtn.click() await browser.deleteSession() })().catch(async (e) => { console.error(e) await browser.deleteSession() }) $ speedo analyze “Performance Test” \ -p https://www.instagram.com/ \ --all Check Performance for Instagram Login

Slide 38

Slide 38 text

pipeline { agent none stages { stage('Linting') { ... } stage('Unit Tests') { ... } stage('Functional Tests') { ... } stage('Performance Tests') { agent { docker { image 'saucelabs/speedo' } } steps { sh 'speedo run https://google.com -u ${SAUCE_USERNAME} -k ${SAUCE_ACCESS_KEY} -b ${BUILD_NUMBER}' } } } } Ready For CI/CD Speedo was build to run within your continuous integration pipeline! variables: SPEEDO_IMAGE: saucelabs/speedo stages: - lint - test - performance - deploy # ... # run performance tests performance: stage: performance image: $SPEEDO_IMAGE script: - speedo run https://google.com -u $SAUCE_USERNAME -k $SAUCE_ACCESS_KEY -b $BUILD_NUMBER # ...

Slide 39

Slide 39 text

const submitBtn = await browser.$('button[type="submit"]') await submitBtn.click() const result = await browser.assertPerformance( 'My Performance Test', ['speedIndex', 'timeToFirstInteractive']) expect(result.pass).toBe(true) Test Performance within a WebDriver test /session/:sessionId/sauce/ondemand/performance WebDriver Extension JS Executor (Selenium Python) driver.execute_script('sauce:performance', {“metrics”: [...]”})

Slide 40

Slide 40 text

/** * Test performance of hard page transition */ browser.url('https://postmates.com') let result = await browser.assertPerformance(JOB_NAME, ['score']) assert.equal(result.result, 'pass', 'Performance test for opening main page did not pass') /** * Test performance of soft page transition */ const username = await browser.$('#e2e-geosuggest-input') await username.setValue('San Francisco') const submitBtn = await browser.$('#e2e-go-button') await submitBtn.click() result = await browser.assertPerformance(JOB_NAME, ['score']) assert.equal(result.result, 'pass', 'Performance test for the feed did not pass')

Slide 41

Slide 41 text

Jankiness The Browser A JavaScript Powerplant

Slide 42

Slide 42 text

https://speedcurve.com/blog/javascript-growth

Slide 43

Slide 43 text

https://discuss.httparchive.org/t/cpu-time-breakdown/1510

Slide 44

Slide 44 text

“Jank is any stuttering, juddering or just plain halting that users see when a site or app isn't keeping up with the refresh rate. Jank is the result of frames taking too long for a browser to make, and it negatively impacts your users and how they experience your site or app.” —jankfree.org

Slide 45

Slide 45 text

No content

Slide 46

Slide 46 text

No content

Slide 47

Slide 47 text

Performance Best Practices ● Functional vs. Performance Testing ● Don’t worry about other browser / versions too much ● Keep it simple! ● Maintain one job name for one performance test ● Know what you want to test ○ Scoring based metrics are the best generalised metrics ○ Use others if you have more specific requirements What to do and what not to do?!

Slide 48

Slide 48 text

Thanks! Does anyone have any questions? https://speakerdeck.com/christianbromann/automated-performance-testing-with-webdriver [email protected] christian-bromann @bromann