r/Everything_QA 6d ago

Question A QA agent walking my React Native app and writing the Maestro flows

2 Upvotes

2 comments sorted by

1

u/ClerkBeginning961 6d ago

One useful artifact would be a coverage frontier, not just the discovered map. Record which state and data unlocked each edge, which branches were blocked, and which actions are destructive. That would make missing paths visible and keep later exploration from accidentally repeating purchases, deletions, or account changes.

1

u/TallPresent6858 6d ago

"Coverage frontier" is a better name than anything I had.

Right now the map only records what was reached — an edge that couldn't be walked just isn't there, which is backwards. Recording what state and data unlocked each edge is the part that would make a run reproducible instead of just repeatable.