Open In App

Print All Link Name Using Selenium In Python

Improve
Improve
Like Article
Like
Save
Share
Report

Selenium is a powerful tool for controlling web browsers through programs and performing browser automation. It is functional for all browsers, works on all major OS and its scripts are written in various languages i.e Python, Java, C#, etc, we will be working with Python.

Requirements:

You need to install chromedriver and set path. Click here to download.

Note: For more information follows this link.

Step-by-step Approach:

  • Import required modules
  • Taking any URL.
  • using By.TAG_NAME find web link on a webpage.
  • then use a loop for print link name.

Implementation:

Python3




#import module
from selenium import webdriver
from selenium.webdriver.common.by import By
  
  
driver = webdriver.Chrome()
  
# url
  
# find web links
link = driver.find_elements(By.TAG_NAME, 'a')
  
# print name of all links
for i in link:
    print(i.text)


Output:


Last Updated : 12 Nov, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads