From 3143576cc05626038769ae16d8edcf6423cd5347 Mon Sep 17 00:00:00 2001 From: zy Date: Tue, 16 Sep 2025 02:12:21 +0800 Subject: [PATCH] publish tags by arrow down (#80) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 使用 arrow down 吧,arrow-right 有时候不能移动到最结尾 --- xiaohongshu/publish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xiaohongshu/publish.go b/xiaohongshu/publish.go index ae4e5cf..e29015e 100644 --- a/xiaohongshu/publish.go +++ b/xiaohongshu/publish.go @@ -159,7 +159,7 @@ func inputTags(contentElem *rod.Element, tags []string) { for i := 0; i < 20; i++ { contentElem.MustKeyActions(). - Type(input.ArrowRight). + Type(input.ArrowDown). MustDo() time.Sleep(10 * time.Millisecond) }