Stefano Magni
I'm a passionate Front-end Engineer, a speaker, and an instructor. I love creating high-quality products, testing and automating everything, learning and sharing my knowledge, helping people. I work remotely for Hasura.
Organised by:
Hosted by:
by Stefano Magni (@NoriSte)
Front-end Developer
Level: basic
Prerequisites: knowledge of JS Promises and async/await
02/02/2019
Wi-Fi: Tecnopolo Ticino, pwd: SuglioEst5
If you haven't cloned the repo yet:
• clone (Clone it! Don't simply download it!)
https://github.com/NoriSte/feti-workshop-e2e-testing-with-puppeteer
• $ npm install
• $ npm test
If everything works you will see:
PASS test/min.e2e.test.js
Generic check
✓ You're ready for the workshop :) (818ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 2.121s
https://slides.com/noriste/e2e-testing-workshop-feti
Today's slides
With UT you test functions, classes, in general everything you consider a "unit".
You check the behaviour of your units with every kind of input they can receive.
They say little about your code but they are extremely fast, both to be written and to be run.
With Integration tests you test a limited amount of units/components in a controlled environment.
You check how they work together and they allow you to start seeing the bigger picture.
Generally you mock (replace with fake but credible code) almost everything external to what you're focusing on.
They test the visual side of your web-app, they literally make a screenshot of your page and compare every pixel with the previous one.
They are extremely slow and they are almost dedicated to test CSS side of your project.
The goal of the author was to tease the unit testers to introduce them about the need for E2E testing.
... We are going to start in a few minutes, be patient 🙏🏻
Never write an E2E test to test something you can test with an Integration one... And never write an Integration test if you can get the same result with an Unit one.
From the Puppeteer.page.click API documentation:
This method fetches an element with selector, scrolls it into view if needed, and then uses page.mouse to click in the center of the element.
https://github.com/GoogleChrome/puppeteer
1: Node running the script
2: Chromium launched with Puppeteer
3: Code executed in page
// welcome external devtools
return await puppeteer.launch({
args: [
// loading Chrome Vue devtools
`--load-extension=/.../vue-devtools/shells/chrome/`,
]
});
https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#working-with-chrome-extensions
// if you have previously saved the Chrome endpoint you can connect to it
// instead of creating a new one
browser = await puppeteer.connect({browserWSEndpoint: existingEndPoint});
e.g. https://github.com/smooth-code/jest-puppeteer
https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#puppeteerdefaultargsoptions
const browser = await puppeteer.launch({
args: ['--no-sandbox']
});
https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#browsercreateincognitobrowsercontext
const browser = await puppeteer.launch();
// Create a new incognito browser context.
const context = await browser.createIncognitoBrowserContext();
// Create a new page in a pristine context.
const page = await context.newPage();
// Do stuff
await page.goto('https://example.com');
const browser = await puppeteer.launch({
executablePath: '/path/to/Chrome'
});
const browser = await puppeteer.launch({});
const page = await browser.newPage();
// when an error is thrown in Chrome
// it's logged by the node process
page.on('pageerror', e => console.log(e.text))
await page.setRequestInterception(true);
page.on('request', request => {
// it intercepts every call to register.php and
// responds with a custom JSON
if (request.url() === 'register.php') {
request.respond({
content: 'application/json',
body: JSON.stringify({registered: true})
});
}
else {
// other requests work as usual
request.continue();
}
});
await page.setCookie({
name: 'loggedIn',
value: '1'
});
const device = {
'userAgent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',
'viewport': {
'width': 375,
'height': 667,
'isMobile': true,
'hasTouch': true,
'isLandscape': false
}
}
await page.emulate(device);
// or you can use one of the presets
const devices = require('puppeteer/DeviceDescriptors');
const iPhone6 = devices['iPhone 6'];
await page.emulate(iPhone6);
• $, $$, $eval, $$eval: DOM utilities
• addScriptTag, addStyleTag: add resources in page
• page.evaluate: runs a function into the browser
• page.exposeFunction: adds a function
• page.click
• page.hover
So you can see what the browser is doing.
Directly from
https://github.com/GoogleChrome/puppeteer#debugging-tips
const browser = await puppeteer.launch({
headless: false
});
Not ideal for very long tests but super useful though.
Directly from
https://github.com/GoogleChrome/puppeteer#debugging-tips
const browser = await puppeteer.launch({
headless: false,
slowMo: 250 // slow down every action by 250ms
});
afterAll(async () => {
// await browser.close();
});
Directly from... me 😊
beforeAll(async () => {
// code to be run before the whole test suite
});
beforeEach(async () => {
// code to be run before every test
});
afterAll(async () => {
// code to be run after the whole test suite
});
describe('Description 1', () => {
test('Test 1', () => {
expect(1).toBe(1);
});
test('Test 2', () => {
expect('hello').not.toBe('world');
});
describe('Inner description', () => {
test('Inner test 1', () => {
expect({foo: 'bar'}).toEqual({foo: 'bar'});
});
test('Inner test 2', () => {
expect(0).toBeFalsy();
});
});
});
PASS ./test.js
Description 1
✓ Test 1 (5ms)
✓ Test 2 (1ms)
Inner description
✓ Inner test 1 (2ms)
✓ Inner test 2 (1ms)
Test Suites: 1 passed, 1 total
Tests: 4 passed, 4 total
Snapshots: 0 total
Time: 1.071s
Ran all test suites.
test.js
result of $ jest
It should be obvious but remember: the fact that your suite tests is running in a real and interactive browser... it doesn't mean that you should interact with it!
When you are running the browser in non-headless mode remember to not affect the test with your mouse/keyboard.
The button takes the user to another page.
Complete the test that checks it.
git checkout test-1
open ./dist/test-1.html
open ./test/test-1.e2e.test.js
• index.html has a big blue button
• test-1.e2e.test.js misses something (see the comments at line 22)
• launch the test suite with $ npm test
Valid for every test: You can't change the HTML files 😇
FAIL test/test-1.e2e.test.js
That's our first E2E test
✕ The button brings the user to the next page (1156ms)
● That's our first E2E test › The button brings the user to the next page
Error
TimeoutError: Text not found "Hello from FETI"
waiting for function failed: timeout 500ms exceeded
Test Suites: 1 failed, 1 total
Tests: 1 failed, 1 total
Snapshots: 0 total
Time: 2.223s
Ran all test suites.
npm ERR! Test failed. See above for more details.
$ npm run --> Why it fails?
await expect(page).toMatch('Hello from FETI');
It fails because this expectation timed out...
// test/test-1.e2e.test.js
describe(`That's our first E2E test`, () => {
test(`The button brings the user to the next page`, async () => {
await page.goto(`file:${path.join(__dirname, './../dist/test-1.html')}`);
// - run $npm test
// - the test will fail
// - use puppeteer to click the button
// - and then re-run $npm test
await expect(page).toMatch('Hello from FETI');
}, 5000);
});
p.s. you can't cheat modifying the page itself 😁
git checkout test-1-solution
On the test-1-solution branch you can find a solution of mine.
describe(`That's our first E2E test`, () => {
test(`The button brings the user to the next page`, async () => {
await page.goto(`file:${path.join(__dirname, './../dist/test-1.html')}`);
// always add a 'data-test' attribute to the elements that will
// participate to your tests
await page.click('[data-test="button"]');
// checking for a specific content is a good way to be 100% sure
// that the page has been loaded
await expect(page).toMatch('Hello from FETI');
}, 5000);
});
// waiting for your code...
Send me the code you found on Stack Overflow 😇 (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
<a data-test="button">
<!--
find it with the following selector
[data-test="button"]
-->
Always add a data-test (or data-testid) attribute to the elements that will be referenced by the tests.
Because every attribute has a “role”.
We use .classes for CSS (and they got replaced in case of CSS Modules), #ids for JS, and therefore they can change based on CSS and JS needs…
A dedicated attribute is more resilient to refactoring and leads every (diligent) developer to keep it or, at least, ask himself for the attribute use.
Ok, so:
• E2E tests are very important...
• the first test seemed really easy to be written…
Amazing, I’ll write ~1000 E2E tests as soon as I back home!!!
Because you aren’t in isolation (like in Unit tests), nor in a super-mocked environment...
You have a real browser on a real network, you’ll face network latencies, temporary downs of the server, service workers, unpredictable AD scripts and banners, (possible) browser drivers inconsistencies…
Simulating the (exact) user behaviour sometimes could be very tricky (blur, input typos etc.).
They’re not always parallelisable (in simple cases they are, but they can lead to errors and debugging hell).
The more complex they are, the more difficult they are to debug.
If you try to DRY your tests you’re probably adding another (hard to manage) complexity layer.
They can fail, get used with that, there are too many context variables to be considered.
They are slow, even with almost instant UI interactions.
Everyone defines them flaky and brittle...
and
git checkout test-2
open ./dist/test-2.html
open ./test-2.e2e.test.js
• now if you launch the test suite (with $ npm test) the test fails, why?
// test/test-2.e2e.test.js
beforeAll(async () => {
browser = await puppeteer.launch({
headless: true,
slowMo: 0
});
page = await browser.newPage();
});
// ...
describe(`That's our second E2E test`, () => {
test(`The button brings the user to the next page`, async () => {
await page.goto(`file:${path.join(__dirname, './../dist/test-2.html')}`);
// always add a 'data-test' attribute to the elements that will participate to your tests
await page.click('[data-test="button"]');
// it fails, why?
// checking for a specific content is a good way to be 100% sure that the page has been loaded
await expect(page).toMatch('Hello from FETI');
}, 5000);
});
git checkout test-2-solution
On the test-2-solution branch you can find a solution of mine.
describe(`That's our second E2E test`, () => {
beforeAll(async () => {
await page.goto(`file:${path.join(__dirname, './../dist/test-2.html')}`);
// don't let the test fail for a silly element like a cookie footer
// It could be already accepted when you navigate to another page
if(await page.$('[data-test="cookie-footer-acceptance"]')) {
try {
// what happens if it exists but isn't clickable (eg. it's hidden)?
// A try/catch will manage the case
await page.click('[data-test="cookie-footer-acceptance"]');
} catch(e) {
// the element exists but isn't clickable
}
}
});
});
// waiting for your code...
Send me the code you found on Stack Overflow 😇 (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
Never use some "sleep" code, you can’t determine how much a page/script could be waited for (render waitings, network conditions etc.).
Use waiters, promises, framework-specific render callbacks (like Vue.nextTick) but not sleep.
git checkout test-3
open ./dist/test-3.html
open ./test/test-3.e2e.test.js
Again! Now the cookie footer disappears with a CSS animation!
test(`The button brings the user to the next page`, async () => {
// always add a 'data-test' attribute to the elements that will participate to your tests
await page.click('[data-test="button"]');
// it fails again...
// check for a specific content is a good way to be 100% sure that the page is been loaded
await expect(page).toMatch('Hello from FETI');
}, 5000);
git checkout test-3-solution
On the test-3-solution branch you can find a solution of mine.
if(await page.$('[data-test="cookie-footer-acceptance"]')) {
try {
await page.click('[data-test="cookie-footer-acceptance"]');
// you can wait that an element is hidden
// @see https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pagewaitforselectorselector-options
await page.waitForSelector('#cookie-footer', {
hidden: true
});
} catch(e) {
// the element exists but maybe it isn't clickable
}
}
// waiting for your code...
Send me your code (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
git checkout test-4
open ./dist/test-4.html
open ./test/test-4.e2e.test.js
The last time with the button, trust me 😊
Now the cookie footer disappears (from a user perspective... not from a CSS one) dispatching an event!
test(`The button brings the user to the next page`, async () => {
// always add a 'data-test' attribute to the elements that will participate to your tests
await page.click('[data-test="button"]');
// it fails again...
// checking for a specific content is a good way to be 100% sure that the page has been loaded
await expect(page).toMatch('Hello from FETI');
}, 5000);
git checkout test-4-solution
On the test-4-solution branch you can find a solution of mine.
if(await page.$('[data-test="cookie-footer-acceptance"]')) {
try {
await page.click('[data-test="cookie-footer-acceptance"]');
// @see https://github.com/GoogleChrome/puppeteer/blob/master/docs/api.md#pageevaluatepagefunction-args
await page.evaluate(() => new Promise(resolve => {
// the following code will run into the browser page
window.addEventListener('cookieFooterDidHide', () => resolve());
}));
} catch(e) {
// the element exists but maybe it isn't clickable
}
}
// waiting for your code...
Send me your code (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
const puppeteer = require('puppeteer');
(async (options) => {
browser = await puppeteer.launch({
headless: false,
devtools: true
});
page = await browser.newPage();
console.log('Node logging');
await page.evaluate(
() => console.log('Browser logging')
);
})()
const seven = 7;
const result = await page.evaluate(aNumber => {
// JQuery is in page? Redux?
// Use them and give back results to the NodeJS script
return aNumber * 10;
}, seven);
console.log(result); // 70
const seven = 7;
const result = await page.evaluate(() => {
// error! Because the scope is the Chrome's window!
// Not the NodeJS script!
return seven * 10;
});
console.log(result);
const seven = 7;
const result = await page.evaluate(aNumber => {
// you can use a promise for every async stuff
return new Promise(resolve => {
setTimeout(() => resolve(aNumber*10), 1000);
});
}, seven);
console.log(result); // 70
// code refactored without arrow functions
await page.evaluate(function() {
// a Promise is returned to the page.evaluate
// so it waits until the promise is fullfilled
return new Promise(resolve => {
// now we're in the Chromium instance, we can listen for
// the event triggered on the window
window.addEventListener('cookieFooterDidHide', function(){
// when the event is been triggered we fullfill the promise
resolve();
});
});
});
// the code after the page.evaluate will be run once the event
// in the browser will be triggered
const SELECTOR = '[href]:not([href=""])';
let link;
link = await page.evaluate((sel) =>
document.querySelector(sel).getAttribute('href')
, SELECTOR);
const SELECTOR = '[href]:not([href=""])';
let link;
link = await page.evaluate((sel) =>
document.querySelector(sel).getAttribute('href')
, SELECTOR);
// compare the two following examples
link = await page.$eval(SELECTOR, el => el.getAttribute('href'));
// or
link = await page.$(SELECTOR).getProperty('href').jsonValue();
page.on('console', msg => console.log('PAGE LOG:', msg.text()));
Directly from
https://github.com/GoogleChrome/puppeteer#debugging-tips
const browser = await puppeteer.launch({
headless: false,
slowMo: 250, // slow down by 250ms
devtools: true
});
Or add debugger to an existing evaluate statement (it works if the Chrome DevTools are opened).
Directly from
https://github.com/GoogleChrome/puppeteer#debugging-tips
await page.evaluate(() => {debugger;});
// The test will now stop executing in the above evaluate statement,
// and chromium will stop in debug mode.
Directly from
https://github.com/GoogleChrome/puppeteer#debugging-tips
jest.setTimeout(100000);
describe.only('Temporary run only me please', () => {
test('The test we want to isolate', () => { ... });
});
describe('A suite that won\'t be launched', () => {
test('Test 2', () => { ... });
});
describe('Another suite that won\'t be launched', () => {
test('Test 3', () => { ... });
});
describe('Suite 1', () => {
test('The test we want to isolate', () => { ... });
});
describe.skip('A suite that will be skipped', () => {
test('Test 2', () => { ... });
});
describe('Suite 3', () => {
test.skip('A test that will be skipped', () => { ... });
});
await page.evaluate(() => console.log('Test name'));
Directly from... me 😊
Directly from... me 😊
https://jestjs.io/docs/en/expect
Directly from... me 😊
Expected: true
Received: false
3 | describe(`Test`, () => {
4 | test(`Leverage assertions`, () => {
> 5 | expect(getObj().key === 5).toBe(true);
// Ok, what is the value of getObj().key?
Expected: 5
Received: 4
3 | describe(`Test`, () => {
4 | test(`Leverage assertions`, () => {
> 5 | expect(getObj().key).toBe(5);
// ok I'll fix it without relaunching the suite
Directly from... me 😊
$ npm test --runInBand
Add a Todo and check that it has been showed in page.
git checkout test-5
open ./dist/test-5.../index.html
open ./test/test-5.e2e.test.js
• index.html is the usual Todo List app
• test-5.e2e.test.js is almost empty (see the comments at line 37)
• launch the test suite with $ npm test
git checkout test-5-step1-solution
On the test-5-step1-solution branch you can find a solution of mine.
// fill the input
await page.type(inputSelector, todos[0]);
// click the button
await page.click(buttonSelector);
// run a script in page to get the innerText of the new todo
const innerText = await page.evaluate((selector) => {
// remember that this function hasn't a scope
return document.querySelector(selector).innerText;
}, itemSelector);
// and then check it with Jest
expect(innerText.includes(todos[0])).toEqual(true);
// waiting for your code...
Send me your code (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
git checkout test-5-2
open ./dist/test-5.../index.html
open ./test/test-5.e2e.test.js
• test-5.e2e.test.js, line 63
• add all the todos in the array, remove the first two and then... read the store and check that the last two todos exist in the store itself.
P.s. I exposed a window.vueInstance variable so you can access the store with window.vueInstance.$store.state.todos
git checkout test-5-step2-solution
On the test-5-step2-solution branch you can find a solution of mine.
const state = await page.evaluate(() =>
window.vueInstance.$store.state.todos);
expect(state.map(item => item.text))
.toEqual(['Pass this test', 'Join the FETI volunteers']);
On the test-5-step2-solution branch you can find a solution of mine.
// waiting for your code...
Send me your code (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
Puppeteer is Chrome/Firefox(at the moment) but if you use Selenium etc. remeber to avoid launching every test on every browser. Choose a reference browser and carefully select the test to be run on the other ones.
Make a screenshot if a test fails. It can help you avoiding to relaunch the suite with the browser in non-headless mode.
if (array.length !== 3)
await page.screenshot({path: 'screenshot.png'})
expect(array.length).toBe(3)
In a page where everything changes soon… try to standardize your testing environment to avoid false negatives.
Don't think to test every corner case with E2E testing, it's pure madness.
An assertion is auto-explicative, an error isn't.
await page.goto(AUTHENTICATED_ROOT);
expect(page.url()).toEqual(expect.not.stringContaining('/login'));
// you won't have a "element not found"
// if something went wrong with the authentication
await page.click('[data-test="create-new-post"]');
widely used
not so easy to install/setup
it has a WebDriver for every desktop browser (IE too)
Expected Conditions FTW (a sort of page.waitForSelector on steroids)
amazing "DevTools" UI
clear errors
play/pause functionality
made only for E2E testing, it's not a generic automation browser
works in real browsers (so you can even test on mobile ones)
supported by BrowserStack and CrossBrowserTesting
who uses it loves it 🙂
If you want to see the differences between Puppeteer/TestCafe/Cypress you can take a look at a repository I made to solve an issue on StackOverflow:
https://github.com/NoriSte/stackoverflow-52383438-cypress-issue
If you're developing a "change password" flow, for every change you make to the code you need to manually:
• login
• go to the profile page
• fill the form to change the password
• click logout
• login with the new password
Just to realize that you have a bug... Then fix it and start again...
You could use Puppeteer to bring you directly at the end of the flow.
And once you finished... Add some assertions and your E2E test is ready 😊
When you're studying a new framework you don't know if you're breaking something you developed just some hours ago... unless you check it manually! Use some tests instead.
Eg. I used them extensively during my first refactors while studying Vue.
Scrape the first 30 results from Google for the given query, have fun 😊
You write the code, I wrote the test to check it, when you're ready launch $ npm test and my test (test/test-6.js) will tell you if everything is fine.
Some tests are initially skipped, enable them one by one.
git checkout test-6
open ./scrape-google-test-6.js
git checkout test-6-solution
On the test-6-solution branch you can find a solution of mine.
// you have two ways for retrieving an element attribute,
// one is through JSHandle functions...
const jsHandle = await els[j].getProperty('href');
const url = await jsHandle.jsonValue();
// ...
// ...
// ... and one with the usual page.evaluate function
const url = await page.evaluate(
(sel) => document.querySelector(sel).getAttribute('href'),
nextButtonSelector);
On the test-6-solution branch you can find a solution of mine.
// waiting for your code...
Send me your code (nori.ste.magni+spam[AT]gmail.com) and we'll discuss it!
• E2E tests really matter, they don't know anything about your architecture, they test what the end user sees
• they’re quite easy to develop, with a flat learning curve
• write a few amount of tests, don't delegate to E2E testing something you can test with other testing methodologies
• remember to take the tests simple, they could be extremely time-consuming
• never "sleep" the browser
• use "data-test"/"data-testid" attributes
• remember that you can scrape/execute whatever you want on the web with an automated browser
• https://www.blazemeter.com/blog/top-15-ui-test-automation-best-practices-you-should-follow • https://medium.freecodecamp.org/why-end-to-end-testing-is-important-for-your-team-cb7eb0ec1504 • https://blog.kentcdodds.com/write-tests-not-too-many-mostly-integration-5e8c7fff591c • https://hackernoon.com/testing-your-frontend-code-part-iii-e2e-testing-e9261b56475 • https://gojko.net/2010/04/13/how-to-implement-ui-testing-without-shooting-yourself-in-the-foot-2/ • https://willowtreeapps.com/ideas/how-to-get-the-most-out-of-ui-testing • http://www.softwaretestingmagazine.com/knowledge/graphical-user-interface-gui-testing-best-practices/ • https://www.slideshare.net/Codemotion/codemotion-webinar-protractor • https://frontendmasters.com/courses/testing-javascript/introducing-end-to-end-testing/ • https://medium.com/welldone-software/an-overview-of-javascript-testing-in-2018-f68950900bc3 • https://medium.com/yld-engineering-blog/evaluating-cypress-and-testcafe-for-end-to-end-testing-fcd0303d2103
• https://egghead.io/courses/end-to-end-testing-with-google-s-puppeteer-and-jest • https://egghead.io/courses/end-to-end-testing-with-cypress
• FETI and Fabio Prada for all the work they do
• Fondazione Agire for the amazing location
• Massimo Foti for inspiring me with his Unit Testing Workshop
• Kent C. Dodds for the amazing “Solidifying what you learn” post
• Luca Previtali and Creeo Studio that allowed me to try this workshop in advance
Organised by:
Hosted by:
by Stefano Magni (@NoriSte)
Front-end Developer
The repository with the code and the link to these slides
https://github.com/NoriSte/feti-workshop-e2e-testing-with-puppeteer
02/02/2019
By Stefano Magni
In fall 2018 I had a workshop for the FETI (FrontEnders Ticino) community in Chiasso (https://www.meetup.com/it-IT/FrontEnders-Ticino/events/258183736/). The workshop aimed to introduce the attendees to the amazing world of browser automation, mostly for E2E testing but some exercises were about web scraping too.
I'm a passionate Front-end Engineer, a speaker, and an instructor. I love creating high-quality products, testing and automating everything, learning and sharing my knowledge, helping people. I work remotely for Hasura.