-
Notifications
You must be signed in to change notification settings - Fork 928
[Bug]: Playwright keyboard.type 导致输入缓慢及换行中断 #178
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Bug type
Behavior bug (incorrect output/state without crash)
Summary
Playwright keyboard.type 导致输入缓慢及换行中断,建议修改如下:
// await page.keyboard.type(params.message, { delay: 20 });
// await page.waitForTimeout(300);
// await page.keyboard.press("Enter");
await page.keyboard.insertText(params.message);
await page.keyboard.press("Enter");
Steps to reproduce
OpenClaw UI对话及飞书对话转接均可复现
Expected behavior
输入一次性完成且换行不中断。修复后示意如下:
Actual behavior
输入缓慢,且多行长输入中断。修复前示意如下:
OpenClaw version
2026.4.5
Operating system
WSL2
Install method
No response
Model
gemini-3 pro/grok
Provider / routing chain
None
Config file / key location
No response
Additional provider/model setup details
No response
Logs, screenshots, and evidence
Impact and severity
No response
Additional information
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working