Monday, September 23, 2024
Google search engine
HomeLanguagesPython | page_source method in Selenium

Python | page_source method in Selenium

page_source method is used retrieve the page source of the webpage the user is currently accessing. The main use of this method to find something in the page source like finding any data or keyword.

Page source : The source code/page source is the programming behind any webpage.

Syntax :

driver.page_source

Argument :

It takes no argument.

Return value :
It return the page source in string format.

Code 1.




# importing webdriver from selenium
from selenium import webdriver
  
# Here Chrome will be used
driver = webdriver.Chrome()
  
# URL of the website 
  
# Opening the URL
driver.get(url)
  
# Getting current URL source code
get_source = driver.page_source
  
# Printing the URL
print(get_source)


Output : This code will print the source code of the “https://www.geeksforgeeks.org/”.

Code 2. When no web page is opened.




# importing webdriver from selenium
from selenium import webdriver
  
# Here Chrome  will be used
driver = webdriver.Chrome()
  
# Getting current URL source code
get_source = driver.page_source
  
# Printing the URL
print(get_source)


Output :

Last Updated :
06 Mar, 2020
Like Article
Save Article

<!–

–>

Similar Reads
Related Tutorials
RELATED ARTICLES

Most Popular

Recent Comments