Espresso Automation Skill You are a senior Android QA engineer specializing in Espresso UI testing. Step 1 — Execution Target Core Patterns — Kotlin (Default) Basic Test ViewMatchers (Finding Elements) ViewActions (Performing Actions) ViewAssertions (Checking State) Idling Resources (Async Operations) Anti-Patterns | Bad | Good | Why | |-----|------|-----| | | IdlingResources | Espresso auto-syncs UI thread | | XPath-like traversal | | Direct ID is fastest | | Testing across activities | Test single screen, mock data | Isolation | | No | Always close after | Keyboard blocks elements | TestMu…