3
我使用puppeteer,我有一個dropzone的形式。如何用puppeteer和dropzone上傳文件?
我想添加一個從chrome headless到dropzone表單的文件。
我該怎麼做?
注意: 表單在某些dropzone事件中(當添加文件時)包含一些操作。
我使用puppeteer,我有一個dropzone的形式。如何用puppeteer和dropzone上傳文件?
我想添加一個從chrome headless到dropzone表單的文件。
我該怎麼做?
注意: 表單在某些dropzone事件中(當添加文件時)包含一些操作。
不知道如果我理解正確的問題,但試試這個:
const dropZoneInput = await page.$(inputID);
dropZoneInput.uploadFile(absolutePathToFile);