This commit is contained in:
2025-12-26 18:13:15 +08:00
parent 66e6370013
commit 413c147109
32 changed files with 2449 additions and 205 deletions

18
src/test/xhs/index.ts Normal file
View File

@@ -0,0 +1,18 @@
import { program, app, showMore } from '../common.ts'
program
.command('xhs:run')
.description('运行小红书浏览器辅助')
.action(async () => {
const res = await app.run({
path: 'xhs',
key: 'search-notes',
payload: {
keyword: '多维表格',
scrollTimes: 1,
}
})
console.log(showMore(res));
});