I am trying to scrape some data off a tweet
from selenium import webdriver
!pip install kora -q
from kora.selenium import wd
link = 'https://twitter.com/psalmcrypt/status/1442460419612835840?s=19'
wd.get(link)
for a in wd.find_element(By.XPATH , '//*[@id="id__armfsi35bm"]/div[2]/div/div/a'):
promoter = a.get_attribute('href')
print(promoter)
I am getting the following error-
I am copying the xpath from the inspector window