#!/bin/zsh
# web-form-fill — High-level: discover web inputs via AX, focus, type, submit.
# See components/macos/browser-automation/web_form_fill.py for full docs.
set -euo pipefail

BIN_DIR=${0:A:h}
ROOT_DIR=${BIN_DIR:h}
COMPONENT="$ROOT_DIR/components/macos/browser-automation/web_form_fill.py"

exec /usr/bin/env python3 "$COMPONENT" "$@"
