The title
method is used to retrieve the title of the webpage the user is currently working on. It gives the title of the current webpage loaded by the driver in selenium, if webpage has no title a null string will be returned.
Webpage title :A page title, also known as a title tag, is a short description of a webpage and appears at the top of a browser window and in SERPs. It is an important element of an optimized SEO page. A page title should include a page’s keyword in the title tag.
Syntax :
driver.title
Argument :
It takes no argument.
Return value :
It return the title of webpage in string format.
# importing webdriver from selenium from selenium import webdriver # Here Chrome will be used driver = webdriver.Chrome() # URL of website # Opening the website driver.get(url) # Getting current URL source code get_title = driver.title # Printing the title of this URL print (get_title) |
Output :
Lazyroar | A computer science portal for Lazyroar
Code 2:
# importing webdriver from selenium from selenium import webdriver # Here Chrome will be used driver = webdriver.Chrome() # URL of website # Getting current URL source code get_title = driver.title # Printing the title of this URL # Here it is null string print (get_title, " " , len (get_title)) # Opening the website driver.get(url) # Getting current URL source code get_title = driver.title # Printing the title of this URL print (get_title, " " , len (get_title)) |
Output :
Please Login to comment…