Skip to content

Latest commit

 

History

History
78 lines (44 loc) · 1.76 KB

lesson-devtools.md

File metadata and controls

78 lines (44 loc) · 1.76 KB

DevTools ⚙

Prerequisites

Motivation

Edit Instagram followers

Download "protected" photo from Instagram

Get around Pinterest Sign-up modal

Inspect image titles on Facebook

Inspect & adjust Network requests, avoid client side validation

XSS Story

Cannot be published online 🧌

Workshop

HTML, CSS

Playground https://codepen.io/Strajk/pen/VRpzMp?editors=1100

Play https://flukeout.github.io/

DevTools

  • Explore Cypress homepage through DevTools
  • Explore Kiwi.com homepage, explain complexity
  • Explore Google Flights, explain complexity
  • Quickly show DevTools in other browsers

Resources

Play

Stylish -> Kiwi.com rotate logo

Follow up

Use DevTools to fake something and paste screenshot to our Slack channel. Be creative

Theory

W3schools CSS Selectors reference


CSS for rotating logo {docsify-ignore}

[data-test="Logo"] {
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }