Tried the following:
Actions builder = new Actions(driver); builder.keyDown(Keys.CONTROL) .click(someElement) .click(someOtherElement) .keyUp(Keys.CONTROL); Action selectMultiple = builder.build(); selectMultiple.perform(); and
Actions builder = new Actions(driver); Action dragAndDrop = builder.clickAndHold(someElement) .moveToElement(otherElement) .release(otherElement) .build(); dragAndDrop.perform(); and
WebElement element = driver.findElement(By.name("source")); WebElement target = driver.findElement(By.name("target")); (new Actions(driver)).dragAndDrop(element, target).perform(); I also tried to move the mouse along the axes by (1, 1). None of this helped. ChromeDriver generally support this action? If so, can there be options how can this be implemented?