我无法使用以下代码在量角器中添加上传文件:
imageXpath.sendKeys(path.resolve(__dirname,'../../../../images/applicant.jpg'));
其中imageXpath
在函数的顶部声明,其中包括目标的xpath。
我得到了我的图像框来返回base64图像。因此,现在我想知道如何将图像转换为base64格式以及如何在量角器中上传图像。
我尝试了以下代码:
let filePath = 'base64 string...' $('input[type="file"]').sendKeys(data);
但我遇到了错误:
Failed: Maximum call stack size exceeded
RangeError: Maximum call stack size exceeded
正确的方法是什么?