在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用星标2
分支1
更新时间2026年3月2日 16:41
WhatsApp Web messaging via Playwright
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
WhatsApp Web messaging via Playwright
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Window management, file operations, and clipboard
Local media player control via Windows media keys
Notion API for creating and managing pages and databases
Spotify Web Player control via Playwright
OS-level control — apps, volume, brightness, screenshots
General browser control and URL navigation
| name | |
| description | WhatsApp Web messaging via Playwright |
| triggers | ["whatsapp","message","send message","text","chat"] |
| url | https://web.whatsapp.com |
Sends and reads WhatsApp messages via WhatsApp Web in Playwright.
https://web.whatsapp.complaywright_focus_tab(url_contains="web.whatsapp.com") — match by URL, NOT window title (titles change with notifications)playwright_focus_tab(url_contains="web.whatsapp.com") — try existing tabplaywright_open_url(url="https://web.whatsapp.com")playwright_click(selector="[data-testid='chat-list-search']") — click search boxplaywright_type(selector="[data-testid='chat-list-search']", text="<contact_name>") — type contact nameplaywright_wait_for(selector="[data-testid='cell-frame-container']", timeout_ms=5000) — wait for resultsplaywright_click(selector="[data-testid='cell-frame-container']") — click contactplaywright_type(selector="[data-testid='conversation-compose-box-input']", text="<message>") — type messagekeyboard_press(key="Enter") — sendplaywright_get_text(selector="[data-testid='conversation-panel-messages']") — only when user explicitly asksplaywright_focus_tab(url_contains) — switch to WhatsApp tabplaywright_open_url(url) — open WhatsApp Webplaywright_click(selector, strategy) — click elementsplaywright_type(selector, text) — type into search/composeplaywright_wait_for(selector, timeout_ms) — wait for resultsplaywright_get_text(selector) — read messageskeyboard_press(key) — send message with Enter