<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Murilo Mattos</title>
    <description>The latest articles on DEV Community by Murilo Mattos (@murilo_mattos).</description>
    <link>https://dev.to/murilo_mattos</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4008738%2F205a7fec-21ca-40f1-ad0c-916abca1bed0.jpg</url>
      <title>DEV Community: Murilo Mattos</title>
      <link>https://dev.to/murilo_mattos</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/murilo_mattos"/>
    <language>en</language>
    <item>
      <title>AI Doesn't Replace QA Engineers. It Removes the Work We Never Wanted to Do.</title>
      <dc:creator>Murilo Mattos</dc:creator>
      <pubDate>Mon, 29 Jun 2026 21:11:05 +0000</pubDate>
      <link>https://dev.to/murilo_mattos/ai-doesnt-replace-qa-engineers-it-removes-the-work-we-never-wanted-to-do-22lk</link>
      <guid>https://dev.to/murilo_mattos/ai-doesnt-replace-qa-engineers-it-removes-the-work-we-never-wanted-to-do-22lk</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2a0rk3yluzd10nokotdc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F2a0rk3yluzd10nokotdc.png" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every few weeks, a new headline claims that AI will replace QA Engineers.&lt;/p&gt;

&lt;p&gt;As someone who spends every day building software, designing automation frameworks, and developing AI-powered testing tools, I don't think that's what is happening.&lt;/p&gt;

&lt;p&gt;The biggest impact of AI isn't replacing Quality Engineers.&lt;/p&gt;

&lt;p&gt;It's changing where we spend our time.&lt;/p&gt;

&lt;p&gt;The Problem Was Never Testing&lt;/p&gt;

&lt;p&gt;Most engineers don't enjoy maintaining broken selectors.&lt;/p&gt;

&lt;p&gt;They don't enjoy updating hundreds of automated tests after a small UI change.&lt;/p&gt;

&lt;p&gt;They don't enjoy investigating flaky tests caused by timing issues.&lt;/p&gt;

&lt;p&gt;Yet that's where a significant portion of test automation effort has gone over the last decade.&lt;/p&gt;

&lt;p&gt;We became experts at maintaining automation instead of improving software quality.&lt;/p&gt;

&lt;p&gt;That's not a Quality Engineering problem.&lt;/p&gt;

&lt;p&gt;That's an engineering productivity problem.&lt;/p&gt;

&lt;p&gt;AI Changes the Abstraction&lt;/p&gt;

&lt;p&gt;Traditional UI automation depends on technical details.&lt;/p&gt;

&lt;p&gt;CSS selectors.&lt;/p&gt;

&lt;p&gt;XPath.&lt;/p&gt;

&lt;p&gt;DOM structure.&lt;/p&gt;

&lt;p&gt;Element IDs.&lt;/p&gt;

&lt;p&gt;The problem is that users don't think in selectors.&lt;/p&gt;

&lt;p&gt;Engineers don't think in selectors either.&lt;/p&gt;

&lt;p&gt;When we describe a feature, we naturally say things like:&lt;/p&gt;

&lt;p&gt;"Open the login page, enter valid credentials and verify that the dashboard is displayed."&lt;/p&gt;

&lt;p&gt;Not:&lt;/p&gt;

&lt;p&gt;"Click #btn-login after locating input(2)..."&lt;/p&gt;

&lt;p&gt;Large Language Models are finally allowing automation to understand software closer to the way humans describe it.&lt;/p&gt;

&lt;p&gt;Instead of teaching engineers how the DOM works, we're teaching machines how users interact with applications.&lt;/p&gt;

&lt;p&gt;That is a fundamental shift.&lt;/p&gt;

&lt;p&gt;AI Doesn't Understand Risk&lt;/p&gt;

&lt;p&gt;Despite all the excitement around AI, there are things it still cannot decide.&lt;/p&gt;

&lt;p&gt;It doesn't know which customer journey is the most valuable.&lt;/p&gt;

&lt;p&gt;It doesn't understand business priorities.&lt;/p&gt;

&lt;p&gt;It cannot decide whether a regression is acceptable.&lt;/p&gt;

&lt;p&gt;It cannot negotiate trade-offs between delivery speed and quality.&lt;/p&gt;

&lt;p&gt;Those decisions still require engineering judgment.&lt;/p&gt;

&lt;p&gt;Quality has always been about risk management.&lt;/p&gt;

&lt;p&gt;AI helps us analyze risk.&lt;/p&gt;

&lt;p&gt;It doesn't own it.&lt;/p&gt;

&lt;p&gt;What Engineers Should Focus On Instead&lt;/p&gt;

&lt;p&gt;As repetitive work becomes automated, the value of a Quality Engineer changes.&lt;/p&gt;

&lt;p&gt;Less time maintaining locators.&lt;/p&gt;

&lt;p&gt;More time understanding architecture.&lt;/p&gt;

&lt;p&gt;Less time fixing flaky tests.&lt;/p&gt;

&lt;p&gt;More time designing reliable quality strategies.&lt;/p&gt;

&lt;p&gt;Less time writing repetitive automation.&lt;/p&gt;

&lt;p&gt;More time collaborating with developers to prevent defects before they exist.&lt;/p&gt;

&lt;p&gt;That's a much more valuable use of engineering talent.&lt;/p&gt;

&lt;p&gt;My Perspective&lt;/p&gt;

&lt;p&gt;Building AI-powered testing solutions has reinforced one belief.&lt;/p&gt;

&lt;p&gt;The future of Quality Engineering isn't about replacing engineers.&lt;/p&gt;

&lt;p&gt;It's about removing the repetitive work that prevents engineers from solving meaningful problems.&lt;/p&gt;

&lt;p&gt;The companies that benefit the most from AI won't be the ones trying to eliminate QA teams.&lt;/p&gt;

&lt;p&gt;They'll be the ones enabling those teams to focus on architecture, risk analysis, software design and product quality.&lt;/p&gt;

&lt;p&gt;AI isn't replacing engineers.&lt;/p&gt;

&lt;p&gt;It's giving good engineers more leverage.&lt;/p&gt;

&lt;p&gt;And I believe that's where modern Quality Engineering is heading.&lt;/p&gt;

&lt;p&gt;What do you think?&lt;/p&gt;

&lt;p&gt;Has AI changed the way you approach software testing, or is it still solving the wrong problems?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>testing</category>
      <category>developer</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
