修复评论找不到按钮的问题

This commit is contained in:
work
2025-10-17 11:46:22 +08:00
parent 9065b58516
commit 3530c000f5

View File

@@ -490,7 +490,7 @@ def playwright_comment(cookies, target_url, content, image_key=None):
if 'permalink.php?story_fbid' in target_url or '/posts/' in target_url or "/permalink/" in target_url: if 'permalink.php?story_fbid' in target_url or '/posts/' in target_url or "/permalink/" in target_url:
# 文字或图片类型 # 文字或图片类型
input_xpath = '//div[@role="dialog"]//span[@data-ad-rendering-role="comment_button"]' input_xpath = '//div[@role="dialog"]//span[text()="Comment" or@data-ad-rendering-role="comment_button"]'
attach_xpath = '//div[@id="focused-state-actions-list"]//div[@aria-label="Attach a photo or video"]' attach_xpath = '//div[@id="focused-state-actions-list"]//div[@aria-label="Attach a photo or video"]'
comment_xpath = '//div[@aria-label="Comment"]' comment_xpath = '//div[@aria-label="Comment"]'
page.click(input_xpath) page.click(input_xpath)