我试图刮一个网站https://www.hcafloridahealthcare.com/physicians,你必须在佛罗里达州输入到搜索栏。一旦它到达页面,我想刮每个医生的信息。但是,当我想转到下一页时,它给予我一个ElementClickInterceptedException
错误。我使用的代码是:
nextButton = driver.find_element(By.XPATH, "//a[@aria-label = 'go to next page']")
nextButton.click()
我只是不知道怎么按下下一步。
1条答案
按热度按时间enyaitl31#
例外情况表明, selenium 不能与目标元素https://www.selenium.dev/selenium/docs/api/java/org/openqa/selenium/ElementClickInterceptedException.html相互作用
尝试不同的方式
在这种情况下,导航栏是页面的底部,期望,滚动到该元素,并单击将工作