我正在使用selenium抓取网站,当执行向下滚动的代码时,出现此错误“ selenium.common.exceptions.JavascriptException:消息:JavaScript错误:未定义FB” 。
我在问题上进行了搜索,并尝试了此处“ How to workaround 'FB is not defined'?”中给出的解决方案代码,但仍无法解决
向下滚动的代码是
lenOfPage = driver.execute_script("window.scrollTo(0, document.body.scrollHeight);var lenOfPage=document.body.scrollHeight;return lenOfPage;")
如何解决?