Blogposts, discussions, eventsTest automation tip1 it('contains with multiple elements', () => { 2 3 cy.visit('/board/1') 4 5 cy.get('[data-cy=list]') 6 .eq(1) 7 .contains('bug') 8 9 cy.get('[data-cy=card]:contains(bug)') 10 11 }) Meme of the week
|
|
Sign up for weekly tips on testing, development, and everything related. Unsubscribe anytime you feel like you had enough 😊
Filip Hric 18th March 2025 Code (r)evolution is here Hello Reader,We’re living through a massive shift in how code is written. AI is no longer just a sidekick—it’s building entire features in minutes. Supabase is becoming the go-to AI-friendly database, and vibe coding is turning into a movement (controversial or not). That’s why Jonathan and I are going live this Wednesday to break it all down. We’ll talk about what’s happening, where AI is leading us, and what this means for developers and...
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,...
Filip Hric 18th February 2025 FLAKY TESTS Hello Reader,I’ve been working on a project to reduce test flakes. A project that has over 1200 end-to-end tests in a fairly complex system. As I’ve been slowly trying to reach zero, a pattern emerged. It seems like there are common themes when it comes to test flakiness. I shared some of them in my presentation at CypressConf, but lately it seems that flakiness in end-to-end tests is mostly a timing issue. A situation where test and application fall...