我正在尝试将文件上传到Instagram(不用于垃圾邮件目的,但我正在从事个人项目,因此请清楚一点),我坚持实际上传文件的部分因为他们做了一些棘手的工作。
我已经尝试过针对同一问题从多个github问题中编写代码,不幸的是,在这种情况下,输入类实际上并不清晰,并且也具有怪异的不可见字符名称。
我正尝试将文件插入:https://i.imgur.com/QzcsLpi.png(请单击以获得更多信息)。 那是我想要插入文件的地方。
原始代码部分是:
<div class="q02Nz _0TPg" role="menuitem" tabindex="0"><span class="glyphsSpriteNew_post__outline__24__grey_9 u-__7" aria-label="New Post"></span></div>
const filePath = path.relative(process.cwd(), __dirname + `/Content/1/proxy.duckduckgo.jpg`);
const input = await page.$('div[class="q02Nz _0TPg"]');
await input.uploadFile(filePath);```