I am using webdriver.Chrome (Selenium), to get links that are stored under an svg interactive map, at the following URL: https://www.mpcb.gov.in/water-quality
I have tried to use different functions of find_elements_by_ like xpath, partial_text, and more but without success. This is the beginning of my code:
DRIVER_PATH = 'C:/Users/Asaf/Desktop/Asaf/Python/chromedriver.exe'
options = Options()
options.headless = True
options.add_argument("--window-size=1920,1200")
driver = webdriver.Chrome(executable_path=DRIVER_PATH)
# Site URL
url='https://www.mpcb.gov.in/water-quality'
driver.get(url)
To put it in context, I want to get these links (the clickable arena of the map) in order to scrape data from them, one at a time.