js加载页面使用execute_script选定加载位置

Posted 知行Lee

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js加载页面使用execute_script选定加载位置相关的知识,希望对你有一定的参考价值。

#由于js逐步加载页面,存在未显示的网页无法加载源码
from selenium import webdriver
driver = webdriver.Firefox()
init_element = driver.find_element_by_xpath(‘//a[@href="#" and @title="展开"]‘)
driver.execute_script("return arguments[0].scrollIntoView();", init_element)#js选定位置固定到当前





以上是关于js加载页面使用execute_script选定加载位置的主要内容,如果未能解决你的问题,请参考以下文章

自动化操作——JS

使用 dxTreeList 在页面加载时显示选定的节点

python之selenium调用js(execute_script)

Selenium调用javascript

为啥不可点击,但 execute_script 有意义。 href 中的 Python、Selenium、JS [重复]

如何使用硒滚动到页面末尾? [复制]