惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(browser): cover action-input CLI request bodies (#92...
yu-xin-c · 2026-06-19 · via Recent Commits to openclaw:main

@@ -36,12 +36,133 @@ function createElementProgram(): Command {

3636

return program;

3737

}

383839+

function getLastActionBody(): Record<string, unknown> | undefined {

40+

return (mocks.callBrowserRequest.mock.calls.at(-1)?.[1] as { body?: Record<string, unknown> })

41+

?.body;

42+

}

43+3944

describe("browser element commands", () => {

4045

beforeEach(() => {

4146

mocks.callBrowserRequest.mockClear();

4247

getBrowserCliRuntimeCapture().resetRuntimeCapture();

4348

});

444950+

it.each([

51+

{

52+

name: "click",

53+

argv: [

54+

"browser",

55+

"click",

56+

" ref-1 ",

57+

"--target-id",

58+

"tab-1",

59+

"--double",

60+

"--button",

61+

"right",

62+

"--modifiers",

63+

"Shift, Alt",

64+

],

65+

expectedBody: {

66+

kind: "click",

67+

ref: "ref-1",

68+

targetId: "tab-1",

69+

doubleClick: true,

70+

button: "right",

71+

modifiers: ["Shift", "Alt"],

72+

},

73+

},

74+

{

75+

name: "click-coords",

76+

argv: [

77+

"browser",

78+

"click-coords",

79+

"12.5",

80+

"42",

81+

"--target-id",

82+

"tab-2",

83+

"--double",

84+

"--button",

85+

"middle",

86+

"--delay-ms",

87+

"25",

88+

],

89+

expectedBody: {

90+

kind: "clickCoords",

91+

x: 12.5,

92+

y: 42,

93+

targetId: "tab-2",

94+

doubleClick: true,

95+

button: "middle",

96+

delayMs: 25,

97+

},

98+

},

99+

{

100+

name: "type",

101+

argv: ["browser", "type", "input-1", "hello", "--submit", "--slowly", "--target-id", "tab-2"],

102+

expectedBody: {

103+

kind: "type",

104+

ref: "input-1",

105+

text: "hello",

106+

submit: true,

107+

slowly: true,

108+

targetId: "tab-2",

109+

},

110+

},

111+

{

112+

name: "press",

113+

argv: ["browser", "press", "Enter", "--target-id", "tab-3"],

114+

expectedBody: { kind: "press", key: "Enter", targetId: "tab-3" },

115+

},

116+

{

117+

name: "hover",

118+

argv: ["browser", "hover", "node-1", "--target-id", "tab-4"],

119+

expectedBody: { kind: "hover", ref: "node-1", targetId: "tab-4" },

120+

},

121+

{

122+

name: "scrollintoview",

123+

argv: ["browser", "scrollintoview", "node-2", "--target-id", "tab-5"],

124+

expectedBody: { kind: "scrollIntoView", ref: "node-2", targetId: "tab-5" },

125+

},

126+

{

127+

name: "drag",

128+

argv: ["browser", "drag", "start-1", "end-1", "--target-id", "tab-6"],

129+

expectedBody: {

130+

kind: "drag",

131+

startRef: "start-1",

132+

endRef: "end-1",

133+

targetId: "tab-6",

134+

},

135+

},

136+

{

137+

name: "select",

138+

argv: ["browser", "select", "select-1", "alpha", "beta", "--target-id", "tab-7"],

139+

expectedBody: {

140+

kind: "select",

141+

ref: "select-1",

142+

values: ["alpha", "beta"],

143+

targetId: "tab-7",

144+

},

145+

},

146+

])("sends the expected $name action body", async ({ argv, expectedBody }) => {

147+

const program = createElementProgram();

148+149+

await program.parseAsync(argv, { from: "user" });

150+151+

expect(getLastActionBody()).toMatchObject(expectedBody);

152+

});

153+154+

it("rejects a blank required ref before dispatch", async () => {

155+

const program = createElementProgram();

156+157+

await expect(program.parseAsync(["browser", "click", " "], { from: "user" })).rejects.toThrow(

158+

"__exit__:1",

159+

);

160+161+

const capture = getBrowserCliRuntimeCapture();

162+

expect(capture.runtimeErrors.join("\n")).toContain("ref is required");

163+

expect(mocks.callBrowserRequest).not.toHaveBeenCalled();

164+

});

165+45166

it("rejects non-decimal coordinate values before dispatch", async () => {

46167

const program = createElementProgram();

47168