Element is not clickable at point,Other element would receive the click: xxx 遇到某个对象Click()不能正常使用?

遇到的问题与以下博客类似,可以参考以下博客

https://blog.****.net/fengqiaoxian/article/details/81104173

主要是以上问题的分析,我在代码中对下面保存按钮进行操作时,提示无法直接对保存按钮进行点击,原因是这个网页比较大,保存按钮在底部,会被遮挡住,需要对网页进行翻页操作,然后才能进行点击

Element is not clickable at point,Other element would receive the click: xxx 遇到某个对象Click()不能正常使用?

解决办法

self.driver.find_element_by_xpath('/html').send_keys(Keys.PAGE_DOWN)
button = self.driver.find_element_by_css_selector("[class='text-center form-actions']")
button_div = button.find_element_by_css_selector("[class='btn btn-back btn-wide']")
button_div.click()