从本地计算机拖动文件并通过量角器测试放入应用程序

时间:2017-12-14 10:10:37

标签: protractor

从本地计算机拖动文件并通过量角器测试放入应用程序 有什么建议吗?我的拖动区域看起来像enter image description here

3 个答案:

答案 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);
}