/// <summary>
		/// Takes IWebElement from source.DragDropStart() and performs action in target.DragDropEnd().
		/// </summary>
		/// <param name="driver"></param>
		/// <param name="source"></param>
		private void DragDropEnd(WebDriver driver, IWebElement source)
		{
			driver.Drag(source, _element);
		}
Esempio n. 2
0
 /// <summary>
 /// Takes IWebElement from source.DragDropStart() and performs action in target.DragDropEnd().
 /// </summary>
 /// <param name="driver"></param>
 /// <param name="source"></param>
 private void DragDropEnd(WebDriver driver, IWebElement source)
 {
     driver.Drag(source, _element);
 }