How to get the title of a webpage using Selenium Java

+1 vote
I am trying to get the tittle for a webpage for creating a record set. How to get the title of a webpage using Selenium Java?
Dec 14, 2018 in Selenium by Nitesh
• 3,080 points
15,264 views

2 answers to this question.

0 votes

You can use the following method:

wd.get("http://www.abcd.com/");

at = wd.getTitle();

System.out.println(at);
answered Dec 14, 2018 by Aniket
+1 vote

Essentially, driver.getTitle(); function can be used to get the title of a page. So Aniket's code will also work, but there would be complications. So i'll just explain it a little better (hopefully :P).

System.setProperty("webdriver.gecko.driver", "D:files\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.get("https://www.edureka.co");
String title = driver.getTitle();
System.out.println("Title is: ", +title);
answered Dec 17, 2018 by Vardhan
• 13,190 points

Related Questions In Selenium

+1 vote
1 answer

How to get the HTML source of a webpage using Selenium in Java?

There is a method called getPageSource() in ...READ MORE

answered Jan 11, 2019 in Selenium by Sneha
28,266 views
0 votes
1 answer
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,577 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,559 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,606 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,506 views
+4 votes
2 answers

gmail using selenium driver in eclipse

@letslearn, it seems like you have tried ...READ MORE

answered Sep 11, 2018 in Selenium by Vardhan
• 13,190 points
1,182 views
+6 votes
1 answer

Recording all of our test cases in Selenium IDE

Well @vincitydaimo, for obvious reasons we prefer not ...READ MORE

answered Sep 20, 2018 in Selenium by Vardhan
• 13,190 points
662 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