Systems | Development | Analytics | API | Testing

The latest News and Information on Software Testing and related technologies.

Agentic Testing and How QA Teams Can Use Claude Code and Terminal Agents

Agentic Testing and QA is a practice in which AI agents operate directly on a project — reading files, planning tasks, generating framework code, and interacting with a browser — rather than simply answering prompts inside a chat window. Tools like Claude Code bring this capability to the terminal, giving QA teams a command-line assistant that understands repository context, proposes changes before applying them, and generates test assets across Playwright, Selenium, and API testing workflows.

Testing AI Code is a Security Nightmare? #Speedscale #DevOps #Kubernetes #AICoding #SoftwareTesting

AI can write a feature in seconds, but where are you testing it? Sending production traffic, API payloads, and auth headers to a third-party SaaS is a massive security risk. In this video, we break down why the Bring Your Own Cloud (BYOC) model is the ultimate fix for DevSecOps. Learn how to safely test AI-generated code against real production traffic entirely within your own VPC or Kubernetes cluster. No data leaks, no massive DLP pipelines, and no endless masking rules.

News Analysis 2026: How AI Is Transforming Automated Load Testing for Peak Performance

Automated load testing has reached a turning point in 2026. Artificial intelligence, once a gradual addition, now drives a clear shift in how organizations validate performance. Industry reports project a 15% compound annual growth rate (CAGR) for AI in software testing from 2023 to 2026, underscoring the urgency to modernize testing practices and keep up with rapid development cycles.

3 proven ways to streamline SAP and Oracle migrations for state & local governments

State and local governments are under growing pressure to modernize the systems that power essential services, from healthcare and human services to transportation and public safety. At the same time, citizens expect fast, seamless digital experiences when interacting with government agencies. To meet these expectations, many agencies are investing in large-scale ERP transformations, including SAP and Oracle migrations.

New report: We're adopting AI faster than we trust it. Here's what the data shows.

We surveyed 2,501 IT decision-makers, QA professionals, and business leaders across six countries for our second annual Quality Transformation Report. Respondents came from organizations with 150-plus employees across manufacturing, energy and utilities, retail, financial services, and the public sector. One of the major findings: confidence in AI agents making release decisions dropped from 48% in 2025 to 34% in 2026. That’s a 14-point decline in a single year.

The Bug Hiding in Your Production Traffic

Your logs showed 500 errors. The traces showed the dependency graph. Neither showed the actual bug, a DEL control character getting appended to the query string. This is how I found it. In this video I walk through Speedscale BYOC (bring your own cloud): capture real production traffic, store it in your own Elasticsearch cluster inside your VPC, pull it down locally with a single script, and reproduce the exact bug using proxymock. The data never leaves your environment.

Gherkin Software Testing: Syntax, Best Practices, and Pitfalls

Gherkin software testing turns plain-English specifications into executable tests your whole team can read, but only when you stop treating it like a scripting language. If your feature files read like step-by-step UI scripts, you're doing BDD testing backward. Here's how to fix that.

Logs told me something broke. Traffic showed me what.

Here’s a problem I run into constantly: something breaks in production, I can see the 500 errors in my logs, but I can’t reproduce it locally. The trace shows me the dependency graph but not the actual request that failed. This is especially painful in microservices. I was looking at a CNCF example the other day (a simple demo app, like 4 pods) and it already had so many cross-service dependencies that understanding what broke required looking at the whole system at once.