Drag and drop in WinAppDriver doesn't work
问题 I try to automate tests of a drag and drop behavior in a WPF application. One custom control is dragged on another: Drag and drop behavior implemented in the usual WPF way: <UserControl ... MouseMove="ToolboxModule_OnMouseMove"> private void ToolboxModule_OnMouseMove(object sender, MouseEventArgs e) { base.OnMouseMove(e); var data = new DataObject(); data.SetData("ModuleDescription", DataContext); if (e.LeftButton == MouseButtonState.Pressed) DragDrop.DoDragDrop(this, data, DragDropEffects