Autonomous testing is here (?)


Filip Hric

21th January 2025

AUTONOMOUS TESTING

Hello Reader,
The idea of autonomous testing has been popping out in my network a lot lately. Is it the future of QA, or just another buzzword? I recently started a poll on this, and the results were split: while some are excited about its potential, others remain skeptical. Let’s unpack the discussion.

"Autonomous" aims to be the next revolution of testing after test automation. Before, test automation would take away the repetitive parts of testing. It would be strong in areas where people were weak and would get tired. Autonomous testing aims to be strong even in areas where people were previously strong. Supporters believe that AI-powered tools can massively improve testing, especially for smoke and exploratory tests. As some commenters say, the promise is there, but we are not quite there yet.

Not everyone is sold on the idea. Skeptics point out that for complex setups AI still falls short. Especially when testing more complex web applications that require complicated data setup. Demos that we see are nice, but that’s just demos.

While fully autonomous testing might not replace traditional methods yet, its potential for growth is intriguing. As AI improves, the key will be balancing automation with human oversight to ensure quality and reliability.

What’s your take on autonomous testing? Is it a "yay" or "nay" for you? Let me know—I’d love to hear your perspective!


Blogposts, discussions, events

Windsurf is the iPhone of AI code editors

It's cheaper than Cursor too, but is it better overall? Go check out Steve Sewell's review.

Read more →

Colombo Quality Camp

I'm looking forward to my first speaking engagement this year. Join Quality Week '25 by Colombo Quality Camp from February 17th to 21st. Explore insightful sessions led by experts on the latest advancements in software testing.

Read more →

99 Cypress tips

I'm still preparing a special course for you! It will feature bite-sized advice to help you master configuration, API testing, advanced networking, DOM manipulation, performance, and debugging in Cypress. Stay tuned!

Read more →


Test automation tip - upload a file through API

Testing API with Cypress is simple an fun. But when trying to upload a file through API, things get a bit more complicated. Here’s an example of how to achieve this. You can read more about this in my blog.

 1  cy.fixture('logo.png', 'binary').then( image => {
 2    const blob = Cypress.Blob.binaryStringToBlob(image, 'image/png');
 3    const formData = new FormData();
 4    formData.append('image', blob, 'logo.png');
 5  
 6      cy.request({
 7        method: 'POST', 
 8        url: '/api/upload',
 9        body: formData,
10        headers: {
11          'content-type': 'multipart/form-data'
12        },
13      })
14    })

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

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