Looking for a New Challenge


Filip Hric

11th March 2024

Looking for a New Challenge

Hello Reader,
Big changes ahead! One of my major contracts is wrapping up this month, which means I’m now open to new opportunities in consulting, engineering, or DevRel. If your team is looking for someone to improve test reliability, create better documentation, or integrate AI into development workflows, let’s talk.

I specialize in:

✔️ Rescuing unstable test suites & making QA developer-friendly

✔️ Creating educational content (docs, videos, live demos)

✔️ Full-stack web development (built the platform for my 99 Cypress Tips course)

✔️ AI integration into testing & dev workflows


Blogposts, discussions, events

Writing a Blog? Don’t Make This Mistake

Starting a blog or a podcast? My #1 advice: Don’t create a backlog before you start. It sounds counterintuitive, but here’s why…

Read more →

Playwright Users: How Do You Run Your Tests?

I recently asked how people run Playwright tests locally. Many were surprised that the terminal still dominates—is it because devs forget about the VS Code extension?

Read more →

My conference calendar

It is WILD to take a look back at all the conferences I have visited over the years. I have added them all (I think) to my homepage, and also added all those that I plan to attend this year. I’d be happy to meet there if you plan on attending any of them 🙂

Read more →


Test automation tip

If you ever needed to wait for multiple requests after your initial page load, then you might be interested to know that you can wait for all of matched requests using ".all".

 1  it('opens board detail', () => {
 2    cy.intercept('GET', '/api/**').as('requests')
 3  
 4    cy.visit('/board/1')
 5  
 6    cy.get('@requests.all')
 7      .should('have.length.at.least', 4)
 8  
 9    cy.log('ready!')
10  })

Meme of the week


Keep learning and growing,

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...