I am trying to drag an element into another element using Selenium WebDriver but it\'s not working. I tried all the solutions which I can find on internet but none of the so
In your code 1: Not calling perform() method, it should be
Actions builder = new Actions( _controls.getDriver()); builder.dragAndDrop(sourceelement, destelement).perform();
In your code 2: I don't think you need to call release()
Please search for similar questions before posting.