gpt4 book ai didi

javascript - 使用 Puppeteer 处理将文件上传到网站的对话框

转载 作者:行者123 更新时间:2023-12-02 14:47:07 30 4
gpt4 key购买 nike

我有一个脚本,除了最后一部分之外,几乎已经完成。最后一部分需要我选择要上传的 PDF 文件。

我已经尝试过:

inputUploadHandle = await page.$('input[type=file]');
await inputUploadHandle.uploadFile('/myfile.pdf');

我得到一个错误:

(node:20704) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'uploadFile' of undefined

当我点击此处最后手动执行此过程时 enter image description here

然后我选择我的文件:

enter image description here

它显示它是这样上传的:

enter image description here

但是当我也尝试使用时:

const[fileChooser] = await Promise.all([
page.waitForFileChooser(),
page.click('#filingDocumentSection > div:nth-child(2) > div > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div > ul > li > div > div.col-sm-7 > button > i'),
])

await fileChooser.accept(['/myfile.pdf']);

现在我确实看到发生了一些事情,但我不认为网站实际上接受了 pdf 文件。控制台没有读取任何错误,页面看起来像是在等待我做其他事情。我注意到的是,当我这样做时,我无法再单击要上传文件的框。就像那个按钮失去了它的功能一样。

看起来对话框的按钮已打开,然后立即关闭,但我没有看到该文件实际上已被接受或上传。

我用它来查看我是否在实际页面控制台中使用了正确的查询选择器:

document.querySelectorAll('input[type=file]')[0];

返回结果:

<input type="file" ngf-select="" ngf-drop="" ngf-drag-over-class=
"{accept: 'dragover', reject: 'dragover-err', delay: 50}" ngf-multiple="{{filingComponent.AllowMultipleFiles}}"
ng-attr-accept="{{filingComponent.AllowedFileTypes}}"
ngf-accept="filingComponent.AllowedFileTypes"
ngf-change="UploadFiles(filingComponent, $files)"
title="File system upload" accept="application/pdf" multiple="multiple">

现在在控制台的后端,我确实看到当我手动上传文件时调用了函数:

enter image description here

我查看了执行 .UpLoadFiles() 的函数:

n.DownloadDocument = function (t, i, r, u) { 
var f = !1;
u !== undefined & u !== null && u === 1 && (f = !0);
!f && n.SelectedItem.Filing.ViewStampedDocumentsUrl ? window.open(n.SelectedItem.Filing.ViewStampedDocumentsUrl) : $.get(t.format(i, r)).success(function (n) { window.location = n.DownloadUrl }) };
n.UploadFiles = function (t, i) {
var r, u;
n.FileToUploadLength = 0;
r = i.length;
console.group("$scope.UploadFiles()");
angular.isArray(i) && i.length > 0 && (n.SelectedItem.Filing.Id === 0 ? (
u = i.shift(),
n.UploadFileChain(u, t, r, i)) : _.each(i, function (i) {
n.UploadFileChain(i, t, r, []) }));
console.groupEnd() };

不知道是否有帮助......

puppeteer 是否使用 .uploadfile 或 .accept 来使对话框选择您的文件?

最佳答案

我很久以前就在其他公司尝试过这样做,我不认为你所做的事情是错误的,但我认为可能是你正在使用的 puppeteer 版本。我忘记了哪个版本可以工作,但 const[fileChooser] = 这里的代码 绝对应该可以工作。

关于javascript - 使用 Puppeteer 处理将文件上传到网站的对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60979627/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com