How to perform Drag and Drop using selenium webdriver
Here in this tutorial you will learn how to do drag and drop in selenium, perform drag and drop in selenium, drag and drop using selenium webdriver. Test drag and drop feature.
===== selenium script ======
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
public class DragAndDrop
{
public static void main(String[] args)
{
WebDriver driver=new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("http://www.dhtmlgoodies.com/submitted...");
String xp1="//h1[text()='Block 1']";
WebElement source = driver.findElement(By.xpath(xp1));
String xp2="//h1[text()='Block 3']";
WebElement target = driver.findElement(By.xpath(xp2));
Actions actions=new Actions(driver);
actions.dragAndDrop(source, target).perform();
}
}
------------------------------------------------------------------------------------------------------------
Please subscribe us:
/ easytutorialsvideo
Like us on Facebook:
/ easytutorialsvideo
Смотрите видео How to perform Drag and Drop in selenium webdriver | Selenium Tutorial онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь GreatStack 27 Апрель 2015, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 9,597 раз и оно понравилось 32 людям.