We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4cb000 commit c67bdc4Copy full SHA for c67bdc4
src/sync/dynamic/zhihu.ts
@@ -70,7 +70,7 @@ export async function DynamicZhihu(data: SyncData) {
70
await new Promise((resolve) => setTimeout(resolve, 1000));
71
72
// 填写标题(如果有)
73
- const titleInput = (await waitForElement('textarea[placeholder="请输入标题(选填)"]')) as HTMLTextAreaElement;
+ const titleInput = (await waitForElement('textarea[placeholder="添加标题(选填)"]')) as HTMLTextAreaElement;
74
if (titleInput && title) {
75
titleInput.value = title;
76
titleInput.dispatchEvent(new Event('input', { bubbles: true }));
0 commit comments