The end of an era


Filip Hric

17th December 2024

THE END OF AN ERA

Hello Reader,
It’s been five years since I joined the ambassador program and I decided to not longer continue. It’s been fun, but I’m now looking forward to new adventures.

Even though I’m stepping away from the program, my work with Cypress is far from over. Here’s what you can expect:

  • 99 Cypress Tips Course: Yes, it’s still in the works! If you’ve been waiting for it, stay tuned—it’s going to be worth it.
  • Exploring New Tools: Expect more blog posts, videos, tutorials, and guides on tools like Playwright, WebdriverIO, Vitest, MSW, and other gems in the dev/testing world.
  • Building Bridges: My mission hasn’t changed—I’m here to teach developers about testing and testers about development. That means more content to make these worlds collide in the best ways possible.
  • Debugging: If there’s one thing I’ve learned recently, it’s that debugging is an underrated and underdeveloped skill. I’m diving deeper into this area to help bring clarity where frustration often reigns.

Year slowly wraps up - what’s next for you? Are you exploring new tools, deepening your skills, or maybe rethinking your approach to testing? Hit reply and let me know—I’d love to hear about your journey!


New blogpost

How to do authentication in Playwright

Authentication is usually the first hurdle to overcome when setting up test automation. My new blogpost shows how to approach it in the most efficient way.

​Read more →​


Test automation tip

install chai extension

 1  npm i chai-json-schema

extend chai library

 1  // /e2e/support.ts
 2  chai.use(require('chai-json-schema'));

use json schema assertion

 1  // spec.cy.ts
 2  cy.api({
 3      method: 'GET',
 4      url: '/api/cards/1'
 5    }).its('body')
 6      .should('jsonSchema', cardSchema)

Meme of the week


Filip Hric

Teaching testers about development, and developers about testing

filip@filiphric.sk, Senec, Slovakia 90301
​Unsubscribe · Preferences​

Filip Hric

Sign up for weekly tips on testing, development, and everything related. Unsubscribe anytime you feel like you had enough 😊

Read more from Filip Hric

Filip Hric 13th May 2025 TO BE OR NOT TO BE (TECHNICAL) Hey Reader!There’s an ongoing debate in the QA world on whether it makes sense to get technical or not. I remember having a fairly heated debate on this last November at Agile Testing Days in Potsdam. My talk titled "Test like a developer, develop like a tester" argued that we should put the effort as testers to become experts in the software we test. And yes, that includes having a fair bit of developer knowledge. Jason Arbon called...

Filip Hric 23rd April 2025 AN APP CAN BE A HOME-COOKED MEAL He Reader,Today I’d love to share with you one of the best blogposts I’ve ever read. It warmed my heart and inspired me greatly. The blogpost is called "An app can be a home-cooked meal". Give it a read. It taps into something that’s really close to my heart - using your talents to make a world a better place - starting with your family. While you can be a world-renowned chef, it will always feel different when you cook a meal for...

Filip Hric 24th March 2025 Playwright in Production Hello Reader,I’ll be doing a live webinar with my friend Jonathan tomorrow. We’ll be talking about different use-cases of Playwright in production. Interestingly we’ll focus on use cases that are outside of testing, like web-scraping, monitoring and automation workflows. Make sure to register and join us! Register here Blogposts, discussions, events In Case You Missed It – Code (r)evolution Livestream Last week, Jonathan and I unpacked...