Install
openclaw skills install fox-camoufoxAnti-detect browser automation using Camoufox (Firefox-based). Use instead of Chrome/Playwright for bot-detection-heavy sites like X/Twitter, Naver, and othe...
openclaw skills install fox-camoufoxUse instead of OpenClaw's built-in browser tool for bot-detection sites.
bash scripts/setup.sh
source ~/.openclaw/workspace/camoufox-env/bin/activate
xvfb-run -a --server-args="-screen 0 1920x1080x24" python3 your_script.py
from camoufox.sync_api import Camoufox
with Camoufox(
headless=False, # MUST be False (True gets detected)
os='linux', # MUST match server OS (stack traces leak real OS)
humanize=True,
persistent_context=True,
user_data_dir='~/.openclaw/camoufox-profile'
) as browser:
page = browser.new_page()
# Use standard Playwright API from here
~/.openclaw/workspace/camoufox-env/~/.openclaw/camoufox-profile/First visit to protected sites may need manual CAPTCHA:
DISPLAY=:1 python3 scripts/login_session.py https://site.com/login
Solve via VNC, session saves to profile for future automation.
scripts/setup.sh - Install dependenciesscripts/browse.py <url> --screenshot out.png - Quick browsescripts/login_session.py <url> - VNC manual login