Shaun Church

Bizarre browser behaviour: SVG in the Cypress Tree

I have a love/hate relationship with SVGs.

They're wonderful. They're annoying.

Occasionally I catch myself becoming frustrated with some of the issues I've run into while using them. Then I remind myself what it was like before browsers had reasonable SVG support, when I'd have been using images or icon fonts. Pain is relative.

Today I ran into an interesting issue doing some break point testing of a navigation menu with Cypress.io. Once again an SVG was centre stage in an episode of bizarre browser behaviour.

Click Test

I have a menu bar. It has icons with labels at large screen sizes. On smaller screens the labels disappear leaving only the SVG icon.

I wanted Cypress to test the menu and navigation on a selection of screen sizes from 320px to 1920px.

This is easy to do by looping over an array of width, height pairs inside the test, each time setting the screen size with cy.viewport() before clicking the buttons:

it("clicks the button", () => {
  screens.forEach((screen) => {
    cy.viewport(screen[0], screen[1]);
    cy.get(buttonSelector).click();
  });
});

This worked fine at higher resolutions, but failed with a nasty error as soon as the navigation labels beside the SVG icons disappeared on smaller displays.

CypressError: Timed out retrying: illegal invocation

Interesting.

Hmmm...

Inspecting the element gave no clues, and I could still click the element manually even inside the Cypress UI.

Putting a label beside the icon made the test pass. Removing the label made it fail. It was quite peculiar. A label by itself would pass. The icon by itself would fail. The icon and the label would pass.

Any other sibling element made the test pass. A solitary SVG would always fail. Unclickable.

I turned to Google. There was a test case filed in an issue on Github! This always inspires a feeling of camaraderie.

Someone knows my pain!

It turns out a bug in Cypress caused any SVG or any element containing only an SVG to become unclickable.

The fix is in the next release which is, amusingly, due out just as I discover I need it.

It wasn't really the SVG's fault at all. It was framed.

Testing with Cypress is so pain free that it really hurts when you do run in to a strange issue. I reminded myself of all the trouble I had trying to drive Selenium with JavaScript.

This is nothing.

Pain is relative.