Swizec Teller - a geek with a hatswizec.com

Senior Mindset Book

Get promoted, earn a bigger salary, work for top companies

Senior Engineer Mindset cover
Learn more

    BrowserStack โ€“ a less painful way to test weird browsers

    When was the last time you had to make sure your app works on weird browsers like Microsoft Edge?

    Me, I had to do it earlier this week. My experience building websites for a web agency back in high school meant I knew what I was getting into.

    Microsoft Edge did not disappoint.

    Array.flat() doesn't work on Edge. On every other browser it flattens nested arrays. On Edge it blows up and says the method doesn't exist.

    CanIuse for Array.flat
    CanIuse for Array.flat

    CanIuse for Array.flat

    Okay not every browser. Only the ones that people use.

    You can solve that with a polyfill right? An npm package that loads itself up and makes Array.flat work.

    Yep, makes the error go away. Doesn't behave the way it does on other browsers. ๐Ÿคฆโ€โ™‚๏ธ

    So I had to replace every .flat() with my own hack like this: .reduce((arr, vals) => [...arr, ...vals], []). Sigh

    In this project I was also using chroma-js to manipulate colors. Convenient way to take a color and give it a little alpha channel with chroma(color).alpha(0.5).

    Except on Edge this created invalid hex values. Colors no work at all.

    Had to hack it together like this `rgba(${chroma(color).alpha(0.5).rgba().join(',')})

    ๐Ÿคจ

    You thought that was bad? It gets even better!

    .getBoundingClientRect() doesn't work on Edge. Well it does but it returns a ClientRect instead of a DOMRect. They work the same except when they don't.

    For example DOMRect has x and y coordinates. ClientRect only has top and left. Oh and ClientRect only exists on Edge. Of course.

    This meant I had to fix my useDimensions library. Project relies on it a lot to measure stuff and build responsive data visualizations.

    Oh and flexbox doesn't work correctly. Instead of spacing evenly it bunches everything on the left. Of course.

    The hero in this story is BrowserStack

    Despite all this pain, there is a silver lining ๐Ÿ‘‰ BrowserStack made testing on Microsoft Edge absolutely painless.

    Well the testing itself was painful and the results made me cry but I could test.

    I'm a Mac kind of guy you see. I don't have Edge. I don't have a Windows machine. I have zero interest in VirtualBox and futzing around with images and installing Windows on a partition and whatever else it used to take to test on weird browsers.

    With BrowserStack I was able to run Edge in a Chrome tab. That's right. A Chrome tab emulated an entire operating system running a full screen browser.

    Edge probably runs on their servers and streams an image to the tab. Still, feels like magic.

    BrowserStack open screen
    BrowserStack open screen

    BrowserStack open screen

    BrowserStack really does support all browsers ๐Ÿ‘Œ

    You can use it for free for 15 minutes I think. I needed more so I ponied up a whopping $19 for a freelancer plan. That gave me 100 minutes.

    GqIcx7k

    You can even run things from localhost. No idea how they made that work. Type http://localhost:3000 into the URL bar and it actually goes to your localhost.

    Just don't type localhost:3000 because Edge doesn't know how to deal with that and says it can't reach the URL. ๐Ÿคฆโ€โ™‚๏ธ

    And here's proof. Edge running inside Chrome showing my homepage.

    9yvIsIG

    Amazing.

    Lucky for us Microsoft is replacing the Edge browser engine with Chrome some time soon. Maybe then we won't need this anymore ๐Ÿคž

    Cheers, ~Swizec

    Published on March 20th, 2019 in Front End, Technical

    Did you enjoy this article?

    Continue reading about BrowserStack โ€“ a less painful way to test weird browsers

    Semantically similar articles hand-picked by GPT-4

    Senior Mindset Book

    Get promoted, earn a bigger salary, work for top companies

    Learn more

    Have a burning question that you think I can answer? Hit me up on twitter and I'll do my best.

    Who am I and who do I help? I'm Swizec Teller and I turn coders into engineers with "Raw and honest from the heart!" writing. No bullshit. Real insights into the career and skills of a modern software engineer.

    Want to become a true senior engineer? Take ownership, have autonomy, and be a force multiplier on your team. The Senior Engineer Mindset ebook can help ๐Ÿ‘‰ swizec.com/senior-mindset. These are the shifts in mindset that unlocked my career.

    Curious about Serverless and the modern backend? Check out Serverless Handbook, for frontend engineers ๐Ÿ‘‰ ServerlessHandbook.dev

    Want to Stop copy pasting D3 examples and create data visualizations of your own? Learn how to build scalable dataviz React components your whole team can understand with React for Data Visualization

    Want to get my best emails on JavaScript, React, Serverless, Fullstack Web, or Indie Hacking? Check out swizec.com/collections

    Did someone amazing share this letter with you? Wonderful! You can sign up for my weekly letters for software engineers on their path to greatness, here: swizec.com/blog

    Want to brush up on your modern JavaScript syntax? Check out my interactive cheatsheet: es6cheatsheet.com

    By the way, just in case no one has told you it yet today: I love and appreciate you for who you are โค๏ธ

    Created by Swizec with โค๏ธ