Actions
Using Actions in Selenium
Create a basic automation script that completes the test requirements listed below
Test Requirements
Verify the following elements
If needed click the plus sign for help
Set up a new instance of Actions
Actions action = new Actions(driver);
Use a MoveToElement to reveal the text for the device in the second picture
action.moveToElement(driver.findElement(By.xpath(“//*[contains(@class,\”dsm_image_hotspots_child_2\”)]”))).perform();
Perform a context click on the image
action.contextClick(driver.findElement(By.xpath(“//*[@id=\”post-287883\”]/div/div/div/div[2]/div/div[2]/div/div/div/div[1]/img”))).perform();
Use a drag and drop on https://demoqa.com/droppable/
driver.get(“https://demoqa.com/droppable/”);
action.dragAndDrop(driver.findElement(By.xpath(“//*[@id=\”draggable\”]”)), driver.findElement(By.xpath(“//*[@id=\”droppable\”]”))).perform();
Drag the element on https://demoqa.com/dragabble to the right by an offset of 300
driver.get(“https://demoqa.com/dragabble”);
int x = driver.findElement(By.xpath(“//*[@id=\”dragBox\”]”)).getLocation().getX();
System.out.println(x);
action.dragAndDropBy(driver.findElement(By.xpath(“//*[@id=\”dragBox\”]”)), x+100, 0).perform();
Close the WebDriver
driver.close();

Tablet
Tea

