Skip to content

Instantly share code, notes, and snippets.

View AlexJeffcott's full-sized avatar
🏠
Working from home

Alex AlexJeffcott

🏠
Working from home
View GitHub Profile

Alex Jeffcott: Senior Frontend Developer

Berlin, Germany
alexjeffcott@gmail.com
linkedin.com/in/alexanderjeffcott

Summary

As a frontend developer with a special interest in automating quality assurance, web APIs and integrations (sdks and Chrome extensions), I have spent the last 6 years or so working with the wide variety of colleagues and techs needed to take a web application from local development to production.

Some details

@AlexJeffcott
AlexJeffcott / alex_jeffcott_cv.md
Last active June 14, 2022 13:52
CV for Alex Jeffcott

Alex Jeffcott: Senior Frontend Developer

Berlin, Germany
alexjeffcott@gmail.com
linkedin.com/in/alexanderjeffcott

Summary

As a frontend developer with a special interest in automating quality assurance, web APIs and integrations (sdks and Chrome extensions), I have spent the last 6 years or so working with the wide variety of colleagues and techs needed to take a web application from local development to production.

Some details

@AlexJeffcott
AlexJeffcott / example.js
Created July 16, 2019 11:44
Performance e2e
const puppeteer = require('puppeteer')
const SLOW_DEVICE = 'SLOW_DEVICE'
const MEDIUM_DEVICE = 'MEDIUM_DEVICE'
const FAST_DEVICE = 'FAST_DEVICE'
const emulate = async (client, deviceType) => {
switch (deviceType) {
case SLOW_DEVICE:
await client.send('Network.enable')