window.scrollTo(0, document.documentElement.clientHeight); 该 window 对象在DOM有一个 scrollTo 滚动到打开窗口 的任意位置的方法。 该 scrollHeight 是所有元素的共同属性。 该 将给出整个页面体的高度。
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
window.scrollTo(0, document.documentElement.clientHeight); 该 window 对象在DOM有一个 scrollTo 滚动到打开窗口 的任意位置的方法。 该 scrollHeight 是所有元素的共同属性。 该 将给出整个页面体的高度。
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")