I am trying to get data from this site: https://marketsmithindia.com/mstool/evaluation.jsp#details/symbol/VIDHIING
Once I open the page in Selenium it pops up the "Updated Privacy Policy" window. I tried using wait on the modal and click on it but it just times out. Here's the code I have tried:
click_button_path = "//[@class='modal-footer gdpr-notification-close']/[@class=''btn-primary']"
wait = WebDriverWait(driver, 10)
click_button = wait.until(EC.visibility_of_element_located((By.XPATH, click_button_path)))
click_button.click()