@lightcone-ai/daemon 0.15.15 → 0.15.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -97,9 +97,10 @@ export class KuaishouAdapter {
|
|
|
97
97
|
if (!loggedIn) throw new Error('LOGIN_EXPIRED: 快手登录已过期,请重新扫码连接');
|
|
98
98
|
|
|
99
99
|
await this._uploadFiles([video], 'video');
|
|
100
|
-
// Wait for
|
|
101
|
-
await this._waitForSelector('[placeholder*="
|
|
100
|
+
// Wait for publish form: Kuaishou video page shows description area (not a separate title field)
|
|
101
|
+
await this._waitForSelector('[placeholder*="描述"], [contenteditable="true"]', 120000);
|
|
102
102
|
|
|
103
|
+
// Kuaishou video publish has no dedicated title input; skip if field not found
|
|
103
104
|
if (title) {
|
|
104
105
|
await this._fillField('[placeholder*="标题"]', title);
|
|
105
106
|
}
|