How to mouse hover on a web element using Selenium WebDriver

0 votes
Anyone please suggest how can I automate mouse hovering on a web element using Selenium Webdriver?
May 7, 2019 in Selenium by Nitin
6,197 views

1 answer to this question.

0 votes

Hello Nitin, to automate mouse hovering over a web element using selenium webdriver, you can follow this piece of code:

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.Actions;

public class MouseHoverWebElement {

 static WebDriver driver;

 public static void main(String[] args) throws InterruptedException {

  System.setProperty("webdriver.chrome.driver", chrome_driver_path);

  driver = new ChromeDriver();
  driver.manage().window().maximize();
  driver.get("https://www.edureka.co");

  WebElement element = driver.findElement(By.id("cloud-computing-certification-courses"));
  Actions builder = new Actions(driver);
  builder.moveToElement(element).build().perform();
  Thread.sleep(5000);
  driver.close();
 }

}
answered May 7, 2019 by Anvi
• 14,150 points

Related Questions In Selenium

0 votes
1 answer

How can I perform mouse hover to a web element with ruby and selenium webdriver?

Hi Siddhart, checkout the following script to ...READ MORE

answered Aug 26, 2019 in Selenium by Abha
• 28,140 points
2,352 views
0 votes
1 answer

How to drag a web element using Selenium Webdriver?

Hey @Kritika, you can use Actions class ...READ MORE

answered Jul 2, 2019 in Selenium by Ashwin
2,988 views
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,718 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,612 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,685 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,554 views
0 votes
1 answer
0 votes
2 answers

Is there any way to get the text of a web element using Selenium Webdriver?

use gettext() in java : string lableText = ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
8,173 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP