Merge pull request #430 from prehisle/fix/publish-tag-popup-stuck

fix: avoid tag popup blocking after content input
This commit is contained in:
zy
2026-03-01 01:19:48 +08:00
committed by GitHub
2 changed files with 17 additions and 0 deletions

View File

@@ -150,6 +150,9 @@ func submitPublishVideo(page *rod.Page, title, content string, tags []string, sc
if err := contentElem.Input(content); err != nil {
return errors.Wrap(err, "输入正文失败")
}
if err := waitAndClickTitleInput(titleElem); err != nil {
return err
}
if err := inputTags(contentElem, tags); err != nil {
return err
}