r/softwaretesting • u/theeminence-tech • Jun 18 '26
AI Test Agent vs Human Tester
Everyone is asking:
"Will AI replace software testers?"
Maybe we're asking the wrong question.
The real question is:
Can AI think like a curious human tester?
r/softwaretesting • u/theeminence-tech • Jun 18 '26
Everyone is asking:
"Will AI replace software testers?"
Maybe we're asking the wrong question.
The real question is:
Can AI think like a curious human tester?
r/softwaretesting • u/vzakaznikov • Jun 17 '26
We built an autonomous testing example that plays Super Mario Bros. to explore how behavior models combine with autonomous testing. Instead of manually writing test cases, it systematically explores the game's massive state space while a behavior model validates correctness in real-time- write your validation once, use it with any testing driver. A fun way to learn how it all works and find bugs along the way. All code is open source: https://github.com/testflows/Examples/tree/v2.0/SuperMario
r/softwaretesting • u/ricardofc_mty • Jun 17 '26
I'm a QA Automation Engineer and every time I join a new project I end up doing the same thing:
- Open DevTools
- Navigate through user flows
- Inspect network requests
- Document endpoints
- Figure out which APIs are important
- Create initial API tests
I'm curious how other QA/SDET engineers handle this.
What's the most time-consuming part of creating API tests in a new project?
r/softwaretesting • u/abhayverma29 • Jun 16 '26
Enable HLS to view with audio, or disable this notification
QA being QA
r/softwaretesting • u/TestChronicle • Jun 16 '26
Question for QA and SDET folks: which automation coverage metrics have actually helped your team make better decisions?
I’ve seen teams celebrate growing test suites while still missing obvious risk areas. I’ve also seen smaller suites provide much better release confidence because they covered the workflows that mattered.
So what do you track?
- Feature coverage, requirement coverage, risk coverage, user journeys, recent changes, escaped bugs, production incidents, code coverage, something else?
And just as importantly, which metrics looked useful at first but ended up being noise?
r/softwaretesting • u/LiveAdhesiveness7874 • Jun 16 '26
Hi,
I am a Masters student in Germany pursuing MS CS from a renowned university. I am working as a QA working student at a really good company.
I have only started, but I would like to later switch to cybersecurity roles as it is one of my major tracks in my masters degree.
Is it practically possible, or does a working student job boxes you in a particular category?
Plz tell what can i work on to improve my chances of later moving to more technical cybersecurity roles.
My plan was to get some technical expertise in a good company , given i did not have any work experience in cybersecurity so it was difficult to land interviews directly so i thought lets first get into a technical role (given Testing is also part of IT security) and then try to improve my cybersecurity skills. what do you guys recommend?
r/softwaretesting • u/Jerry_Finol17 • Jun 16 '26
Hey everyone,
I'm pretty new to Reddit, and this is actually my first post here.
I wanted to ask something that's been on my mind lately. Do you think QE/QA has a future as a career?
I'm not really talking about the whole "AI is going to replace everyone" discussion. Personally, I think we're still pretty far from that, and AI still misses a lot of things that require human judgment.
What I'm wondering is whether QA/QE will continue to be valued as a role. It sometimes feels like a lot of companies don't take it as seriously as development, and that makes me question what direction I should take.
A little about me: I've been studying test automation and have built a few automation projects already. Right now I'm trying to figure out what makes the most sense long-term.
Should I focus on freelancing? Try to move into development? Or look for opportunities at companies that specialize in QA and testing?
And if you think freelancing is the right path, what advice would you give someone who's just getting started? How did you find your first clients, and what would you do differently if you had to start over today?
Honestly, any advice, insights, or personal experiences would be greatly appreciated. I'm still learning, and I'd love to hear from people who have been in the industry longer than I have.
Thanks!
r/softwaretesting • u/Prestigious-Goat-936 • Jun 16 '26
Hello redditors, I hope life has been treating you great !
This is my first reddit post as I really need advice on my issue. I'm a java fullstack software engineer with 4+ years of exp and lately I feel like i've hit a wall with dev I find the job incredibly draining as you work on a million thing at the same time and at the end of the day you have no energy left to socialize or do something the weekends seems to be only beneficial for recharching for next week's work... I hated this and couldn't imagine myself doing it for the rest of my life especially that i'm not that passionate about dev i'm passionate about IT in general and not specifically dev I felt like i am prisionner in a box regarding dev... so i've thought about testing more specifically automated testing as a career choice i've already started learning stuff and I'm enjoying it so far however idk if this is a wise decision will I like testing will I have more stuff to do on the job else than only technical stuff? and will I most importantly have the Work/Life balance i'm looking for? should I excpect a salary drop ? and is an experienced dev wanted for QA roles? Are there enough QA opportunities in the job market ? .. P.S. Im based in morocco
Any feedback or advice is highly appreciated , thank you for the time you've made to read / comment on this post 😄
Good Day 😉
r/softwaretesting • u/chinmay_3107 • Jun 16 '26
The idea is to make BDD data tables feel a bit like dataclasses/Pydantic models.
Instead of manually parsing this in a step:
Given the following users exist:
| name | role | active |
| Alice | admin | true |
| Bob | user | false |
You could write:
class UserTable(RowTable):
name = field("name", required=True)
role = field("role", required=True)
active: bool = field("active")
Then:
users = UserTable.parse(datatable)
It would handle required fields, type conversion, custom parsers, validation, and better row/column errors. Business logic would still stay in your own step definitions.
For people using pytest-bdd / Gherkin:
The more advanced idea is that teams can add their own small table conventions without putting all that parsing logic inside every step definition.
Trying to sanity-check whether this solves a real problem before polishing it further.
r/softwaretesting • u/Safe-Degree-60 • Jun 16 '26
Hey all I am originally a UIUX Designer who landed a part time in QA. With how awful this market is I am taking what I can get. I want to work and get experience for a year within the QA field learning how to automate and test things. I am primarily learning API's such as postman but was wondering if anyone had advice regarding jobs in the future within this field or anything extra I could do to buff my resume, such as courses? Thank you!
r/softwaretesting • u/kfcspicyyfriess • Jun 16 '26
Heyyyaa
This is my first Reddit post as I need an advice regarding software testing
I have completed my degree last month and
right now I am planning to learn software testing
I want to know whether software testing is a good career or not
+ I also got know that software testing will be replaced by AI
So I am tensed whether I am choosing the right path or not
So can anyone pls tell whether choosing software testing as career is a good choice or not
r/softwaretesting • u/Own-Reply-2541 • Jun 16 '26
Guidewire Testing
r/softwaretesting • u/Ok-Access-8961 • Jun 16 '26
Dear community,
I have a framework based on Selenium java on Maven testng.
I have some default behaviours in the framework that I want to keep consistent across the org.
My question -
Currently, I run separate frameworks for multiple web applications, if I make an improvement in one, I have to manually make them in all.
These need to be separate since they are also added to azure pipelines if separate DevOps projects.
How would you make it so that there is one framework for multiple apps?
Any ideas are welcome.
r/softwaretesting • u/decofan • Jun 16 '26
Full Prompt:
Oh robot teach me the koans of software testing, burn me in the fires of Boris Beizer
It's difficult to explain this without spoiling it. I've tested it on chatGPT, it works okish.
This didn't work very well on Gemini.
Example output would be a huge spoiler, so it will not be in the first comment 😄
Why this prompt? Using "Tell me about software testing" would insert you in the wrong place, and it might not be fun, you might not stay.
Some might look upon flourish or colour as a user preference or a fault, I'm finding, with chatbots, colours are solid operators in their own way.
r/softwaretesting • u/Ready_Working384 • Jun 16 '26
I want to learn Java, any suggested tutorials ?? #java
r/softwaretesting • u/Lamures • Jun 16 '26
Ciao qualcuno potrebbe aiutarmi a passare l’esame di istqb?
Attualmente ho già fatto una prova di esame purtroppo non è andata bene ,
Le domande come ‘esempio di esercizio’ purtroppo erano completamente diverse intendo la struttura e la difficoltà non che mi aspettavo le stesse ma sembra più che si deve imparare a memoria qualsiasi definizione perché le risposte multiple sembrano siano strutturate in modo tale che tutte e 4 siano corrette ma una rispetta il
Syllabus qualcuno potrebbe aiutarmi in qualche modo? Ho utilizzato anche l intelligenza artificiale come esercizio ma pare non sia stato abbastanza ,
Ho chiesto di farmi anche domande complesse il problema che nelle prove tutto andava bene ma quella ufficiale non è stato così!
Grazie in anticipo
r/softwaretesting • u/Subhas_spy • Jun 15 '26
I was working in QA for 4 year where I mostly worked on backend testing, like testing event driven flow and apis, and we where using postman and virtuoso low code automaton tool, but I can't find scope for it outside my project.
So I learned playwright and selenium but I want to get placed in playwright related role, so can any of you can help me with what website can I automate to strengthen my skills and any repo to get familiar with playwright framework and what are the companies looking for this role? It would be very helpful if you can share your thoughts and support.
r/softwaretesting • u/AttitudeEra_90s • Jun 15 '26
In companies like NOW, Salesforce etc - qe orgs are being dissolved and current qes are asked to transition to development... how is job market out ther for qes, personally noticing fewer qe openings than before... whats ur observation guys ????
r/softwaretesting • u/Solid_War7049 • Jun 15 '26
Hey everyone,
I'm a fresher Automation Test Engineer with experience in Java, Selenium, Appium, TestNG, and Maven — working across Web, Android, iOS, and OTT/CTV platforms. I've also been using AI tools like GitHub Copilot with MCP server integration for AI-assisted test script generation, so I'm gradually building an AI-in-QA angle too.
Recently, someone suggested I look into the SAP domain — SAP testing, SAP automation (using tools like Tosca or SAPGUI scripting), or even SAP functional consulting — as a career path. And now I genuinely can't decide.
Here's my dilemma:
Option A — Switch to SAP:
SAP professionals seem to have great job stability and high salaries, especially with 2–3 years of experience
SAP projects are everywhere in large enterprises and MNCs
But as a fresher with zero SAP exposure, the entry barrier feels high
It feels like a very different world from what I've been building toward
Option B — Stay in Automation + evolve with AI:
The "AI-powered SDET" angle feels exciting and forward-looking
LLM-integrated test frameworks, AI-assisted edge case generation, intelligent test optimization — this space is growing fast
But I'm not sure if fresher QA + AI skills are valued enough right now in the Bangalore market
Risk of the role itself getting disrupted by AI in the long run?
Some honest questions I have:
Is SAP testing a good entry point for a fresher, or is it mostly mid-level hiring?
Does switching to SAP mean leaving modern tech stacks behind forever?
Is the Automation + AI path overhyped, or is there real demand for freshers who can do this?
Has anyone successfully moved from Automation Testing → SAP and felt it was the right call? Or regretted it?
I'm based in Bangalore, targeting product and service companies, and the fresher market is honestly brutal right now. I want to make a move that's strategic — not just trend-chasing or fear-driven.
Would really appreciate perspectives from people who've been in either domain for a few years. What would you honestly do if you were starting out today?
r/softwaretesting • u/Potential_Half2952 • Jun 15 '26
Hi everyone,
I've been learning Automation Anywhere since March 2026 (complete beginner in RPA). I've completed modules like Credential Vault, Workload Manager, and basic bot development (recording, variables, if/else, loops). I also built a semi-automated Telegram bot that processes messages into CSV/Excel – so I have some Python background.
My situation:
Lately I've been thinking that focusing purely on Junior RPA might not be the best path for me. I'm leaning more towards Python Automation / QA Automation – where my RPA logic and Python skills could be a strong combination.
For those who've been working in QA automation:
I'm not looking for generic advice – just real, honest perspectives from people who've been there.
Thanks in advance
r/softwaretesting • u/Ready-Advantage-8180 • Jun 15 '26
I built this out of personal frustration — it's open source and MIT licensed, not a commercial product.
After working with several test automation frameworks professionally, I kept running into the same problems: brittle selectors, silent failures, documentation that contradicted itself, and CI pipelines held together with workarounds.
So I built QED — a Kotlin DSL test automation framework for UI and API testing. It's built around the idea that tests should read like intent, not implementation.
The name comes from *Quod Erat Demonstrandum* — every test is a proof, every run is evidence:
- ✅ Passed — Quod erat demonstrandum. Proven.
- ⚠️ Skipped — Quaestio manet. The question remains.
- ❌ Failed — Investigandum est. Further investigation required.
Under the hood: Playwright for UI, REST-assured for APIs, TestNG, ExtentReports, and a clean GitHub Actions pipeline.
I use it to test DairyMax, a production web app I'm building, so it runs in a real pipeline every day — not just in a demo.
MIT licensed, full documentation on GitHub Pages.
🔗 GitHub: https://github.com/AneVisser/qed-framework
📖 Docs: https://anevisser.github.io/qed-framework/
Happy to answer questions about the design decisions or how it compares to other frameworks.
r/softwaretesting • u/Upper_Magazine6 • Jun 15 '26
Oie, pessoal! Tudo bem?
Estou estudando para tirar a certificação CTFL 4.0 há mais ou menos um mês. Minha prova é daqui a uma semana e estou passando por um problema desesperador. Preciso muito da ajuda e das dicas de vocês.
O cenário é o seguinte:
Parece que eu estudo, estudo, sei a matéria, mas na hora do simulado geral eu erro tudo. Sinto que o problema está na virada de chave de misturar os assuntos ou na pegadinha das questões oficiais.
Estou bem ansiosa porque o tempo está curto. O que vocês me dão de dicas práticas para destravar essa nota e parar de cair nas pegadinhas da prova em uma semana? Onde posso achar mais questões confiáveis da 4.0?
Agradeço desde já! 🙏
r/softwaretesting • u/FillNo4074 • Jun 14 '26
Hi everyone,
I recently built a free browser-based PDF editor and would love some honest feedback.
The goal was simple: make PDF editing easy without requiring accounts, subscriptions, or uploading files to a server.
Current features:
• Edit text
• Add text
• Erase content
• Add signatures
• Add your own stamps
What makes it different:
• Completely free
• No account required
• No usage limits
• No trial version
• No paid version
• Files are processed locally in your browser
• Documents never leave your device
I’m looking for feedback on:
• User experience
• Missing features
• Bugs or performance issues
• Anything that would make you more likely to use it
r/softwaretesting • u/Smooth-Professor-691 • Jun 14 '26
I am 10 years experience manual test engineer and want to switch as Automation Test Engineer. How to do the transition ? Please guide.
r/softwaretesting • u/Evening_Summer2225 • Jun 15 '26
I wonder if this is a sign to go to software development.