Actions

  • 26
    Dec

    Ways to Interact with Flash objects in Selenium

    #1. Interact with Flash objects based on element location: If your script can locate the x,y coordinates of an element, you can click it using selenium ACTION class as...

    Read More
  • 04
    Oct

    Double click in Selenium

    Perform Double click in Selenium Selenium provides Actions class to allow end user perform double click on an object. Actions act = new Actions(driver); act.moveToElement(driver.findElement(By.xpath(“Element“))).doubleClick().build().perform();

    Read More