Open In App

Print All Link Name Using Selenium In Python

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:

Implementation:




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

Output:

Article Tags :