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

Hello Reader, AI can generate code, arguably with a pretty decent quality. That’s not news anymore. The question that’s been forming in my head all week is different: how do we decide what should go into production? Writing code is not the hard part (arguably, it never was). The hard part is making sure the right code ships and the wrong code doesn’t. And right now, that selection problem is becoming the defining challenge of AI-assisted development. Last week has definitely showed this....

Hey Reader, If you’re reading this, chances are you care about quality. Coming from QA, I never stop looking at the apps I build and systems I use through the lens of quality. Now, with more and more code being written by AI, this question matters more than ever. Many people wonder whether AI is even capable of delivering quality. I think it is. Though it’s worth remembering that quality is multidimensional. You can always have more or less of it. When it comes to AI and specifically LLMs,...

Hey Reader, It’s been a while since I’ve issued a newsletter, but I’m hoping to get back on track. There are just so many interesting things happening in the world of IT that I want to share with you all. But I’ve decided to change my approach to writing this newsletter a little bit. In the past, my main goal was to come up with some idea or some thought and basically write a post. This put a lot of pressure on me and I never wanted to force myself into writing a newsletter when I had nothing...