使用 cypress 上传文件不适用于 PDF
file upload with cypress is not working for PDF
即使看起来文件已上传但实际上并没有,谁能告诉我如何使用 cypress 上传 pdf 文件
cy.get("div.button").attachFile({
文件路径:'form.pdf',
mimeType:'application/pdf',
编码:“base64”
},
{力:真,
上传类型:“输入”}
)
enter image description here
cy.get(div.button)
看来您定位的元素有误。正确的元素必须是类型 input
而不是类型 div
仔细查看 HTML 以找到正确的选择器
即使看起来文件已上传但实际上并没有,谁能告诉我如何使用 cypress 上传 pdf 文件
cy.get("div.button").attachFile({ 文件路径:'form.pdf', mimeType:'application/pdf', 编码:“base64” }, {力:真, 上传类型:“输入”} )
enter image description here
cy.get(div.button)
看来您定位的元素有误。正确的元素必须是类型 input
而不是类型 div
仔细查看 HTML 以找到正确的选择器