ElementClickInterceptedException Message: element click intercepted: Element ... 的解决办法
解决办法
将原先的
button = driver.find_element_by_xpath('xpath')
button.click()
替换为
button = driver.find_element_by_xpath('xpath')
driver.execute_script('arguments[0].click();'', button) # 关键作用是这句,原因暂时未知