Bumblebee.Implementation.WebDragAndDropPerformer.DragAndDrop C# (CSharp) 메소드

DragAndDrop() 공개 메소드

public DragAndDrop ( IWebElement drag, IWebElement drop ) : void
drag IWebElement
drop IWebElement
리턴 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