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

“Too dangerous to release” has become its own genre of AI announcement. Project Glasswing is the latest entry: not quite a product launch, but a claim about a threshold, dressed up with enough corporate coalition to signal this one is serious. Anthropic says their new security-focused model, Claude Mythos Preview, can find software vulnerabilities better than all but the most skilled human experts. George Hotz challenged the “too dangerous to release” narrative by pointing at the obvious:...

Anthropic had a rough week. And the part that stings isn’t just that something went wrong - it’s how they handled it. A map file, a DMCA frenzy, and a Python loophole On March 31st, Anthropic accidentally shipped Claude Code’s TypeScript source code via a map file left in their npm package. The leak was spotted almost immediately, and GitHub repositories mirroring the code started receiving DMCA takedowns shortly after. What followed was a fairly aggressive takedown campaign by Anthropic. One...

Hello Reader, If you’ve been reading this newsletter for a while, you know that quality engineering is the hill I’ll always choose to stand on. And this week, I get to share something personal that ties directly into that. I’m joining Qodo I’ve been following Qodo for almost a year now, and I’ve been getting more and more impressed every day. So I’m thrilled to share that I’m joining Qodo as a DevRel engineer. Qodo is an enterprise multi-agent platform for AI-driven code reviews. As AI...