Problem
We want to perform multiple actions in once, like: drag-and-drop, sliding, selecting multiple items.
Solution
The example code below shows some examples where we can use the Actions interface of Selenium WebDriver.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | import java.util.List;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Action;
import org.openqa.selenium.interactions.Actions;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class ActionExample {
private static WebDriver driver;
@BeforeClass
public void setUp() {
driver = new FirefoxDriver();
}
@AfterClass
public void tearDown() {
driver.close();
driver.quit();
}
@Test
public void draggable() {
driver.get("http://jqueryui.com/demos/draggable/");
WebElement draggable = driver.findElement(By.id("draggable"));
new Actions(driver).dragAndDropBy(draggable, 120, 120).build()
.perform();
}
@Test
public void droppable() {
driver.get("http://jqueryui.com/demos/droppable/");
WebElement draggable = driver.findElement(By.id("draggable"));
WebElement droppable = driver.findElement(By.id("droppable"));
new Actions(driver).dragAndDrop(draggable, droppable).build().perform();
}
@Test
public void selectMultiple() throws InterruptedException {
driver.get("http://jqueryui.com/demos/selectable/");
List<WebElement> listItems = driver.findElements(By
.cssSelector("ol#selectable *"));
Actions builder = new Actions(driver);
builder.clickAndHold(listItems.get(1)).clickAndHold(listItems.get(2))
.click();
Action selectMultiple = builder.build();
selectMultiple.perform();
}
@Test
public void sliding() {
driver.get("http://jqueryui.com/demos/slider/");
WebElement draggable = driver.findElement(By
.className("ui-slider-handle"));
new Actions(driver).dragAndDropBy(draggable, 120, 0).build().perform();
}
|
No comments:
Post a Comment