How can I capture Tooltip in Selenium Webdriver

0 votes
How can I capture Tooltip in Selenium Webdriver?
Jul 19, 2019 in Selenium by Diljeet
1,538 views

1 answer to this question.

0 votes

Hey Diljeet, following test script allows you to capture tooltip on gmail webpage using Selenium Webdriver:

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;

public class TooltipGmail {

  public static void main(String[] args) {

    WebDriver driver=new FirefoxDriver();
    driver.manage().window().maximize();
    driver.get("https://accounts.google.com/SignUp?service=mail&continue=https%3A%2F%2Fmail.google.com%2Fmail%2F&ltmpl=default");

    driver.findElement(By.xpath(".//*[@id='GmailAddress']")).click();
    WebElement username_tooltip=driver.findElement(By.xpath("html/body/div[2]/div[1]"));

    Actions builder=new Actions(driver);
    builder.moveToElement(username_tooltip).perform();

    String tooltip_msg=username_tooltip.getText();

    System.out.println("Tooltip/ Help message is "+tooltip_msg);

 }
}
answered Jul 19, 2019 by Anvi
• 14,150 points

Related Questions In Selenium

0 votes
1 answer

How can I handle/verify tooltip in Selenium Webdriver?

Hey Amardeep, tooltips are help or info ...READ MORE

answered Jul 5, 2019 in Selenium by Abha
• 28,140 points
400 views
0 votes
1 answer

How can I add Cucumber Jar files in Eclipse to use with Selenium Webdriver?

Hey Eshan, follow these steps to add ...READ MORE

answered May 23, 2019 in Selenium by Abha
• 28,140 points
5,569 views
0 votes
1 answer

How can I clear the text in a text box using Selenium WebDriver?

Hello Akriti, you can clear the text ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
6,156 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,617 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,572 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,629 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,518 views
0 votes
1 answer

How can I create a POM test case in Selenium Webdriver?

Hey Akshay, follow these steps to create ...READ MORE

answered May 13, 2019 in Selenium by Anvi
• 14,150 points
1,202 views
0 votes
1 answer

How can I refresh a browser window in different ways using Selenium Webdriver?

Hello Piyush, you can refresh a browser ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
2,894 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