我正在使用以下代码使用由 JS 呈现的 python selenium webdriver 滚动动态页面。我可以滚动,但问题是滚动速度太快,页面的大部分元素都没有加载,我想刮掉。有什么办法可以减慢滚动速度。
scrl_time = 5
#get scroll height
scrl_hght = browser.execute_script('return document.body.scrollHeight')
for i in range(3):
#scrol to bottom page
browser.execute_script('window.scrollTo(0, document.body.scrollHeight);')
#wait to load page
time.sleep(scrl_time)
#calculate scroll height and compare with last scroll height
new_height = browser.execute_script('return document.body.scrollHeight')
if new_height == scrl_hght:
break
scrl_hght=new_height