I am having difficulties scraping data off of this website. I have relatively minimal experience scraping data with python. If possible, I'd like to download the photos for each airport
from selenium import webdriver from selenium.webdriver.common.by import By
driver = webdriver.Edge()
driver.get('https://ift.tt/8u9jcn2)
airport = driver.find_elements_by_xpath('/html/body/div/div/div[2]/div[2]/div/div[4]/div[2]/a') airport.click()
I've tried the above code to click on each airport with no success.
source https://stackoverflow.com/questions/75203189/is-it-possible-to-download-the-photos-from-the-weathercams-on-the-faas-website
Comments
Post a Comment