I'm having trouble extracting the email address from the following URL:
https://www.iolproperty.co.za/view-property.jsp?PID=2000026825
that is only visible after clicking on the "Show email address" button. However, every time I attempt to click and retrieve the email address for scraping, I encounter an error message stating "Message: element click intercepted:".
I'm not sure where I'm going wrong. Any suggestions would be greatly appreciated! Thank you in advance!
contact_email = WebDriverWait(self.driver, 30).until(EC.element_to_be_clickable((By.XPATH, '//span[@id="viewagmail"]/a/@href'))).click()