Answers

Question and Answer:

  Home  Automation

⟩ Tell me how do perform drag and drop using Selenium WebDriver?

The next Actions class is used to perform drag and drop:

Actions builder = new Actions(driver);

Action dragAndDrop = builder.clickAndHold(SourceElement)

moveToElement(TargetElement)

release(TargetElement)

build();

dragAndDrop.perform();

 192 views

More Questions for you: