Bootstrap

python 运行脚本出现报错"selenium.common.exceptions.ElementClickInterceptedException: Message: element click ...

"selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted:" 这个错误通常是由于在尝试点击元素时被其他元素挡住了。这可能是由于页面布局的原因,导致元素实际上并不能被点击到。

解决方法有很多种,你可以尝试以下方法之一:

  1. 尝试使用 Selenium 的 move_to_element() 方法将鼠标移动到元素上,再进行点击操作。这可能会使被挡住的元素移开,让你能够成功点击到目标元素。

  2. 尝试使用 Selenium 的 `ActionChains

;