Bumblebee.Implementation.WebDragAndDropPerformer.DragAndDrop C# (CSharp) Method

DragAndDrop() public method

public DragAndDrop ( IWebElement drag, IWebElement drop ) : void
drag IWebElement
drop IWebElement
return void
		public void DragAndDrop(IWebElement drag, IWebElement drop)
		{
			new Actions(Driver).DragAndDrop(drag, drop).Build().Perform();
		}

Same methods

WebDragAndDropPerformer::DragAndDrop ( IWebElement drag, int xDrop, int yDrop ) : void