Hi,
I was stuck up in a scenario....handling the Drag and drop operation in an inframe using webdriver java. I have written the following code
driver.get("
http://jqueryui.com/droppable/");
WebElement iframe = driver.findElement(By.tagName("iframe"));
driver.switchTo().frame(iframe);
WebElement draggable = driver.findElement(By.id("draggable"));
WebElement to = driver.findElement(By.id("droppable"));
new Actions(driver).dragAndDrop(draggable, to).build().perform(); but it is not working.
Please help me in this regard.
Thanks,
Vamsi