import sys
sys.path.insert(0, 'agent_recipes/templates/ai-screenshot-capture')
from tools import capture_screenshot, capture_full_page, highlight_and_capture
# Basic screenshot
result = capture_screenshot("https://example.com", output_path="screenshot.png")
# Full page capture
full = capture_full_page("https://example.com", output_path="full.png")
# Highlight element and capture
highlighted = highlight_and_capture(
"https://example.com",
selector=".main-content",
output_path="highlighted.png"
)