Commands can be chained with && in a single shell invocation. The browser persists between commands via a background daemon, so chaining is safe and more efficient than separate calls.
When to chain: Use && when you don't need to read the output of an intermediate command before proceeding (e.g., open + wait + screenshot). Run commands separately when you need to parse the output first (e.g., snapshot to discover refs, then interact using those refs).
Requirements: macOS with Xcode, Appium (npm install -g appium && appium driver install xcuitest)
AI 에이전트를 위한 브라우저 자동화 CLI. 사용자가 페이지 탐색, 양식 채우기, 버튼 클릭, 스크린샷 찍기, 데이터 추출, 웹 앱 테스트 또는 브라우저 작업 자동화 등 웹 사이트와 상호 작용해야 할 때 사용합니다. 트리거에는 "웹 사이트 열기", "양식 작성", "버튼 클릭", "스크린샷 찍기", "페이지에서 데이터 스크랩", "이 웹 앱 테스트", "사이트에 로그인", "브라우저 작업 자동화" 또는 프로그래밍 방식의 웹 상호 작용이 필요한 모든 작업에 대한 요청이 포함됩니다. 출처: andreadellacorte/groove.