出现报错Other element would receive the click:的原因是;
当你selenium中click()点击事件时,所选中的标签被外部div吸收了,因此
解决办法就是进入里面进行点击操作 。driver.execute_script("arguments[0].click();", lists[i])
Python执行script代码即可。
http://www.python66.com/bbs/221.html
标签:web,would,receive,element,Other,报错,click From: https://www.cnblogs.com/meblogs-08/p/16830156.html