惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
A
About on SuperTechFans
博客园 - Franky
Engineering at Meta
Engineering at Meta
Recent Announcements
Recent Announcements
云风的 BLOG
云风的 BLOG
B
Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
U
Unit 42
Martin Fowler
Martin Fowler
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
博客园 - 叶小钗
Vercel News
Vercel News
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
Last Week in AI
Last Week in AI
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
V
V2EX
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Finally Understand Why Mobile Tests Keep Breaking — Tha...
Amitha Mahes · 2026-05-03 · via DEV Community

Amitha Mahesh

I've always wondered why mobile test automation feels so fragile.
You change one small thing in the UI and suddenly everything breaks
— even though the app itself is completely fine.

I got my answer after reading Jay Saadana's article on Vision Language
Models in mobile app testing
.

The thing that clicked for me

We've been testing visual products by reading invisible XML structure
underneath. The test has no idea what the screen looks like. It just
tracks element IDs and code hierarchy.

So when a developer moves a button or renames a component, the test
panics — even though a real human looking at the screen wouldn't notice
anything wrong.

Jay puts it really well in the article — we treated apps like collections
of XML nodes instead of visual interfaces built for human eyes. That one
line genuinely reframed how I was thinking about this.

Where VLMs come in

Vision Language Models fix this by looking at the screen the way a human
does. Instead of hunting for element IDs, the AI looks at a screenshot
and understands — that's a login button, that's a text field, that's a
navigation menu — purely from visual context.

So when you write a test like "tap the login button", it finds it
visually. Move the button, rename it, redesign the whole screen — the
test still works because it's looking at what's visible.

A few numbers from the article that stuck with me:

  • 9% higher code coverage compared to traditional methods
  • 29 new bugs found in Google Play apps that existing tools completely missed
  • Tests written in plain English — no automation expertise needed

That last one is what got me. Plain English test instructions means
testing becomes something the whole team can contribute to, not just
the person who knows the framework inside out.

What I'm taking away from this

I came into this article thinking flaky tests were just a tooling problem.
I'm leaving it thinking it was always a conceptual problem — we were
never testing what users actually see.

VLMs are the first approach that actually fixes the root cause instead
of patching around it.

Big thanks to Jay for writing this so clearly. If you're into AI, mobile
development, or just curious about where software testing is heading —
give it a read.
Worth your time.


Curious — have any of you run into the flaky test problem before?
How did you deal with it? Drop it below!

@jaysaadana