Best Selenium code snippet using org.openqa.selenium.interactions.Interface Mouse.mouseMove
Source:MouseElementActions.java  
...48     * then {@link MouseElementActions#clickAndHold()}49     * <p>50     * {@link Mouse#mouseUp(Coordinates)} to {@link MouseElementActions#release()}51     * <p>52     * {@link Mouse#mouseMove(Coordinates)} to {@link MouseElementActions#moveToElement()}53     * <p>54     * {@link Mouse#mouseMove(Coordinates, long, long)} to {@link MouseElementActions#moveToElement(int, int)}55     * <p>56     * {@link Mouse#contextClick(Coordinates)} to {@link MouseElementActions#contextClick()}57     */58    @Deprecated59    public Mouse basic() {60        return ((HasInputDevices) driver).getMouse();61    }62    /**63     * Clicks (without releasing) in the middle of the given element. This is equivalent to:64     * <i>Actions.moveToElement(onElement).clickAndHold()</i>65     *66     * @return this object reference to chain calls67     * @see org.openqa.selenium.interactions.Actions#clickAndHold(WebElement)68     */69    public MouseElementActions clickAndHold() {70        actions().clickAndHold(element).perform();71        return this;72    }73    /**74     * Releases the depressed left mouse button, in the middle of the given element.75     * This is equivalent to:76     * <i>Actions.moveToElement(onElement).release()</i>77     * <p>78     * Invoking this action without invoking {@link #clickAndHold()} first will result in79     * undefined behaviour.80     *81     * @return this object reference to chain calls82     * @see org.openqa.selenium.interactions.Actions#release(WebElement)83     */84    public MouseElementActions release() {85        actions().release(element).perform();86        return this;87    }88    /**89     * Clicks in the middle of the given element. Equivalent to:90     * <i>Actions.moveToElement(onElement).click()</i>91     *92     * @return this object reference to chain calls93     * @see org.openqa.selenium.interactions.Actions#click(WebElement)94     */95    public MouseElementActions click() {96        actions().click(element).perform();97        return this;98    }99    /**100     * Performs a double-click at middle of the given element. Equivalent to:101     * <i>Actions.moveToElement(element).doubleClick()</i>102     *103     * @return this object reference to chain calls104     * @see org.openqa.selenium.interactions.Actions#doubleClick(WebElement)105     */106    public MouseElementActions doubleClick() {107        actions().doubleClick(element).perform();108        return this;109    }110    /**111     * Moves the mouse to the middle of the element. The element is scrolled into view and its112     * location is calculated using getBoundingClientRect.113     *114     * @return this object reference to chain calls115     * @see org.openqa.selenium.interactions.Actions#moveToElement(WebElement)116     */117    public MouseElementActions moveToElement() {118        actions().moveToElement(element).perform();119        return this;120    }121    /**122     * Moves the mouse to the middle of the target element. The element is scrolled into view and its123     * location is calculated using getBoundingClientRect.124     *125     * @param target element to move to and release the mouse at.126     * @return this object reference to chain calls127     * @see org.openqa.selenium.interactions.Actions#moveToElement(WebElement)128     */129    public MouseElementActions moveToElement(WebElement target) {130        actions().moveToElement(target).perform();131        return this;132    }133    /**134     * Moves the mouse to an offset from the top-left corner of the element.135     * The element is scrolled into view and its location is calculated using getBoundingClientRect.136     *137     * @param xOffset Offset from the top-left corner. A negative value means coordinates left from138     *                the element139     * @param yOffset Offset from the top-left corner. A negative value means coordinates above140     *                the element141     * @return this object reference to chain calls142     * @see org.openqa.selenium.interactions.Actions#moveToElement(WebElement, int, int)143     */144    public MouseElementActions moveToElement(int xOffset, int yOffset) {145        actions().moveToElement(element, xOffset, yOffset).perform();146        return this;147    }148    /**149     * Moves the mouse to an offset from the top-left corner of the target element.150     * The element is scrolled into view and its location is calculated using getBoundingClientRect.151     *152     * @param target element to move to and release the mouse at.153     * @param xOffset Offset from the top-left corner. A negative value means coordinates left from154     *                the element155     * @param yOffset Offset from the top-left corner. A negative value means coordinates above156     *                the element157     * @return this object reference to chain calls158     * @see org.openqa.selenium.interactions.Actions#moveToElement(WebElement, int, int)159     */160    public MouseElementActions moveToElement(WebElement target, int xOffset, int yOffset) {161        actions().moveToElement(target, xOffset, yOffset).perform();162        return this;163    }164    /**165     * Performs a context-click at middle of the given element. First performs a mouseMove166     * to the location of the element.167     *168     * @return this object reference to chain calls169     * @see org.openqa.selenium.interactions.Actions#contextClick(WebElement)170     */171    public MouseElementActions contextClick() {172        actions().contextClick(element).perform();173        return this;174    }175    /**176     * A convenience method that performs click-and-hold at the location of the source element,177     * moves to the location of this element (target), then releases the mouse.178     *179     * @param source element to emulate button down at...Source:MouseActions.java  
...38     * then {@link MouseElementActions#clickAndHold()}39     * <p>40     * {@link Mouse#mouseUp(Coordinates)} to {@link MouseElementActions#release()}41     * <p>42     * {@link Mouse#mouseMove(Coordinates)} to {@link MouseElementActions#moveToElement()}43     * <p>44     * {@link Mouse#mouseMove(Coordinates, long, long)} to {@link MouseElementActions#moveToElement(int, int)}45     * <p>46     * {@link Mouse#contextClick(Coordinates)} to {@link MouseElementActions#contextClick()}47     */48    @Deprecated49    public Mouse basic() {50        return ((HasInputDevices) driver).getMouse();51    }52    /**53     * Clicks (without releasing) at the current mouse location.54     *55     * @return this object reference to chain calls56     * @see org.openqa.selenium.interactions.Actions#clickAndHold()57     */58    public MouseActions clickAndHold() {...Source:Mouse_interfaceClass.java  
...28		WebElement Category=driver.findElement(By.xpath("//span[contains(.,'Category')]"));29		//Get elemnet Coordinates30		Coordinates Obj_Co=((Locatable)Category).getCoordinates();31		//Peform mouse hover action on location32		mouse.mouseMove(Obj_Co);33		34		35		//Identify location36		WebElement Mobiles=driver.findElement(By.xpath("//span[text()='Mobiles, Computers']"));37		//hover on location38		mouse.mouseMove(((Locatable)Mobiles).getCoordinates());39		40		//Target location41		WebElement Laptops=driver.findElement(By.xpath("//span[contains(.,'Laptops')]"));42		mouse.click(((Locatable)Laptops).getCoordinates());43	}4445}
...Source:Mouse_Hover.java  
...25		//Identify Target26		WebElement Products=driver.findElement(By.linkText("Products"));27		//Get element coordinate using locatable class28		Coordinates Products_Co=((Locatable)Products).getCoordinates();29		mouse.mouseMove(Products_Co);30		Thread.sleep(5000);31		32		//Identify Target33		WebElement Loan=driver.findElement(By.linkText("Loans"));34		//Get element coordinate using locatable class35		Coordinates Loan_Co=((Locatable)Loan).getCoordinates(); 36		mouse.mouseMove(Loan_Co);37		Thread.sleep(5000);38		39		WebElement  Personal_Loan=driver.findElement(By.linkText("Personal Loan"));40		Coordinates Personal_Loan_co=((Locatable)Personal_Loan).getCoordinates();41		42		mouse.click(Personal_Loan_co);43		44		driver.close();4546	}4748}
...Source:Mouse.java  
...9  public abstract void mouseDown(Coordinates paramCoordinates);10  11  public abstract void mouseUp(Coordinates paramCoordinates);12  13  public abstract void mouseMove(Coordinates paramCoordinates);14  15  public abstract void mouseMove(Coordinates paramCoordinates, long paramLong1, long paramLong2);16  17  public abstract void contextClick(Coordinates paramCoordinates);18}...mouseMove
Using AI Code Generation
1Actions action = new Actions(driver);2action.moveByOffset(100, 100).build().perform();3Actions action = new Actions(driver);4action.moveToElement(element).build().perform();5Actions action = new Actions(driver);6action.moveToElement(element, 100, 100).build().perform();7Actions action = new Actions(driver);8action.moveToElement(element).moveByOffset(100, 100).build().perform();9Actions action = new Actions(driver);10action.moveToElement(element).moveToElement(element2).build().perform();11Actions action = new Actions(driver);12action.moveToElement(element).moveToElement(element2, 100, 100).build().perform();13Actions action = new Actions(driver);14action.moveToElement(element).moveToElement(element2).moveByOffset(100, 100).build().perform();15Actions action = new Actions(driver);16action.moveToElement(element).moveToElement(element2).moveToElement(element3).build().perform();17Actions action = new Actions(driver);18action.moveToElement(element).moveToElement(element2).moveToElement(element3, 100, 100).build().perform();19Actions action = new Actions(driver);20action.moveToElement(element).moveToElement(element2).moveToElement(element3).moveByOffset(100, 100).build().perform();21Actions action = new Actions(driver);22action.moveToElement(element).moveToElement(element2).moveToElement(element3).moveToElement(element4).build().perform();23Actions action = new Actions(driver);24action.moveToElement(element).movemouseMove
Using AI Code Generation
1import org.openqa.selenium.By;2import org.openqa.selenium.WebDriver;3import org.openqa.selenium.WebElement;4import org.openqa.selenium.chrome.ChromeDriver;5import org.openqa.selenium.interactions.Actions;6public class MouseMovement {7	public static void main(String[] args) throws InterruptedException {8		System.setProperty("webdriver.chrome.driver", "C:\\Users\\sidda\\Downloads\\chromedriver_win32\\chromedriver.exe");9		WebDriver driver = new ChromeDriver();10		Thread.sleep(3000);11		Actions action = new Actions(driver);12		action.moveToElement(element).build().perform();13		Thread.sleep(3000);14		driver.findElement(By.linkText("Hot Meals")).click();15		Thread.sleep(3000);16		driver.close();17	}18}mouseMove
Using AI Code Generation
1package com.selenium2.easy.test.server;2import org.openqa.selenium.By;3import org.openqa.selenium.WebDriver;4import org.openqa.selenium.WebElement;5import org.openqa.selenium.interactions.Actions;6import org.openqa.selenium.interactions.internal.Coordinates;7import org.openqa.selenium.interactions.internal.Locatable;8import org.openqa.selenium.remote.DesiredCapabilities;9import org.openqa.selenium.remote.RemoteWebDriver;10import java.net.MalformedURLException;11import java.net.URL;12public class MouseClick {13    public static void main(String[] args) throws MalformedURLException, InterruptedException {14        DesiredCapabilities capability = DesiredCapabilities.chrome();15        WebElement element = driver.findElement(By.name("q"));16        element.sendKeys("Selenium");17        Thread.sleep(2000);18        Actions action = new Actions(driver);19        action.moveToElement(element).build().perform();20        action.click().build().perform();21        driver.quit();22    }23}24[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ selenium2easytest ---25[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ selenium2easytest ---mouseMove
Using AI Code Generation
1import org.openqa.selenium.By;2import org.openqa.selenium.WebDriver;3import org.openqa.selenium.WebElement;4import org.openqa.selenium.chrome.ChromeDriver;5import org.openqa.selenium.interactions.Actions;6public class MouseMove {7    public static void main(String[] args) {8        WebDriver driver = new ChromeDriver();9        WebElement element = driver.findElement(By.linkText("Gmail"));10        Actions action = new Actions(driver);11        action.moveToElement(element).click().build().perform();12    }13}14import org.openqa.selenium.By;15import org.openqa.selenium.WebDriver;16import org.openqa.selenium.WebElement;17import org.openqa.selenium.chrome.ChromeDriver;18import org.openqa.selenium.interactions.Actions;19public class MouseHover {20    public static void main(String[] args) {21        WebDriver driver = new ChromeDriver();22        WebElement element = driver.findElement(By.linkText("Gmail"));23        Actions action = new Actions(driver);24        action.moveToElement(element).click().build().perform();25    }26}LambdaTest’s Selenium 4 tutorial is covering every aspects of Selenium 4 testing with examples and best practices. Here you will learn basics, such as how to upgrade from Selenium 3 to Selenium 4, to some advanced concepts, such as Relative locators and Selenium Grid 4 for Distributed testing. Also will learn new features of Selenium 4, such as capturing screenshots of specific elements, opening a new tab or window on the browser, and new protocol adoptions.
Upgrading From Selenium 3 To Selenium 4?: In this chapter, learn in detail how to update Selenium 3 to Selenium 4 for Java binding. Also, learn how to upgrade while using different build tools such as Maven or Gradle and get comprehensive guidance for upgrading Selenium.
What’s New In Selenium 4 & What’s Being Deprecated? : Get all information about new implementations in Selenium 4, such as W3S protocol adaption, Optimized Selenium Grid, and Enhanced Selenium IDE. Also, learn what is deprecated for Selenium 4, such as DesiredCapabilites and FindsBy methods, etc.
Selenium 4 With Python: Selenium supports all major languages, such as Python, C#, Ruby, and JavaScript. In this chapter, learn how to install Selenium 4 for Python and the features of Python in Selenium 4, such as Relative locators, Browser manipulation, and Chrom DevTool protocol.
Selenium 4 Is Now W3C Compliant: JSON Wireframe protocol is retiring from Selenium 4, and they are adopting W3C protocol to learn in detail about the advantages and impact of these changes.
How To Use Selenium 4 Relative Locator? : Selenium 4 came with new features such as Relative Locators that allow constructing locators with reference and easily located constructors nearby. Get to know its different use cases with examples.
Selenium Grid 4 Tutorial For Distributed Testing: Selenium Grid 4 allows you to perform tests over different browsers, OS, and device combinations. It also enables parallel execution browser testing, reads up on various features of Selenium Grid 4 and how to download it, and runs a test on Selenium Grid 4 with best practices.
Selenium Video Tutorials: Binge on video tutorials on Selenium by industry experts to get step-by-step direction from automating basic to complex test scenarios with Selenium.
LambdaTest also provides certification for Selenium testing to accelerate your career in Selenium automation testing.
Get 100 minutes of automation test minutes FREE!!
