public void CopyWorkFlowWithContextMenuCopyAndPasteToAnotherWorkflowExpectedNothingCopied() { Clipboard.SetText(" "); RibbonUIMap.CreateNewWorkflow(); UITestControl theTab = TabManagerUIMap.GetActiveTab(); WorkflowDesignerUIMap.CopyWorkflowXamlWithContextMenu(theTab); Assert.IsTrue(string.IsNullOrWhiteSpace(Clipboard.GetText()), "Able to copy workflow Xaml using context menu"); RibbonUIMap.CreateNewWorkflow(); theTab = TabManagerUIMap.GetActiveTab(); var startButton = WorkflowDesignerUIMap.FindStartNode(theTab); Mouse.Click(new Point(startButton.BoundingRectangle.X - 5, startButton.BoundingRectangle.Y - 5)); SendKeys.SendWait("^V"); Assert.IsFalse(WorkflowDesignerUIMap.DoesControlExistOnWorkflowDesigner(theTab, "Unsaved 1(FlowchartDesigner)")); }