Selenium Java for mouse events using the Action class
Codeaft.java
import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.interactions.Action; import org.openqa.selenium.interactions.Actions; class Codeaft { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "/home/codeaft/drivers/chromedriver"); WebDriver driver = new ChromeDriver(); driver.manage().window().maximize(); driver.navigate().to("https://codeaft.github.io/testapp/"); WebElement link = driver.findElement(By.name("reset")); Actions builder = new Actions(driver); Action mouseHoverHome = builder.moveToElement(link).build(); mouseHoverHome.perform(); } }
Comments and Reactions