Answers for "drag and drop in selenium"

1

drag and drop in selenium

There are different ways to drag and drop I use


         Actions action=new Actions(driver);					
		
         action.dragAndDrop(source, target).build().perform();		
			
	or
action.clickAndHold(source).moveToElement(target).release().build().perform();
Posted by: Guest on December-05-2020

Browse Popular Code Answers by Language