从本地计算机拖动文件并通过量角器测试放入应用程序 有什么建议吗?我的拖动区域看起来像enter image description here
答案 0 :(得分:0)
您应该无法从窗口外拖动掉落..
答案 1 :(得分:0)
这不仅仅是input
字段吗?如果是这样,您应该使用sendKeys
方法。
答案 2 :(得分:0)
如果您的意思是文件上传(而不是拖放),请尝试此功能
import * as path from 'path';
function uploadFile(fullPath: string) {
const sh = require('shelljs');
const cwd = sh.pwd().toString();
const absolutePath = path.join(cwd, fullPath);
$('input[type="file"]').sendKeys(absolutePath);
}