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