I have a news website to scrape. But after scraping the first page, I need to click on "load more" which is a link to view other news and then scrape. Where I am encountering an issue is that I can't seem to click on "load more" because it doesn't have a "href". I have tried all possible resources, but they have all worked to no avail. Please, kindly help me out with this. Thank you. I have attached the code I used and the link to the website.
Code trials:
pip install webdriver-manager
from selenium.webdriver.common.keys import Keys
import time
from webdriver_manager.chrome import ChromeDriverManager
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.common.exceptions import NoSuchElementException
driver = webdriver.Chrome(ChromeDriverManager().install())
url = 'https://www.legit.ng/tag/road-accidents-in-nigeria/'
driver.get(url)
link = driver.find_element_by_link_text("Entertainment")
link.click()