3

我正在测试一个 Web 应用程序,其中一种情况是能够将文件从文件系统中拖放到组件上。

与此类似:

http://s3u.github.com/har-view/

http://html5demos.com/dnd-upload

有没有办法使用 Web 驱动程序模拟将文件从文件系统拖放到元素上?

4

2 回答 2

1

不,不幸WebDriver的是,它只驱动浏览器,不能触摸它之外的任何东西。如果你想拖放一些东西,你必须使用Robot或任何其他工具(可能有一个库)。

于 2012-06-27T14:08:51.470 回答
0

唯一对我有帮助的是运行我在Selenium 中找到的 JS 代码:从文件系统拖放到 webdriver?

只需将整个内容复制粘贴到您的项目中即可。

请参阅:静态无效 DropFile(IWebElement 目标,字符串文件路径,int offsetX = 0,int offsetY = 0){

        if (String.IsNullOrWhiteSpace(filePath))
        {
            throw new ArgumentNullException("filePath");
        }

        if (!File.Exists(filePath))
        {
            throw new FileNotFoundException(filePath);
        }



        IWebDriver driver = ((RemoteWebElement)target).WrappedDriver;
        IJavaScriptExecutor jse = (IJavaScriptExecutor)driver;
        WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(30));


        string JS_DROP_FILE = @"
    var target = arguments[0],
        offsetX = arguments[1],
        offsetY = arguments[2],
        document = target.ownerDocument || document,
        window = document.defaultView || window;

    var input = document.createElement('INPUT');
    input.type = 'file';
    input.style.display = 'none';
    input.onchange = function () {
      target.scrollIntoView(true);

      var rect = target.getBoundingClientRect(),
          x = rect.left + (offsetX || (rect.width >> 1)),
          y = rect.top + (offsetY || (rect.height >> 1)),
          dataTransfer = { files: this.files };

      ['dragenter', 'dragover', 'drop'].forEach(function (name) {
        var evt = document.createEvent('MouseEvent');
        evt.initMouseEvent(name, !0, !0, window, 0, 0, 0, x, y, !1, !1, !1, !1, 0, null);
        evt.dataTransfer = dataTransfer;
        target.dispatchEvent(evt);
      });

      setTimeout(function () { document.body.removeChild(input); }, 25);
    };
    document.body.appendChild(input);
    return input;
    ";

        IWebElement input = (IWebElement)jse.ExecuteScript(JS_DROP_FILE, target, offsetX, offsetY);
        input.SendKeys(filePath);
        wait.Until(ExpectedConditions.StalenessOf(input));
于 2017-01-17T22:32:24.607 回答