使用selenium这个网页自动化测试工具,去获得源码。因为这个工具是等到页面加载完成采取获取的整个页面的代码,所以理论上是可以获得页面完整数据的。
def request_selenium(url): chrome_options = Options() chrome_options.add_argument("--headless") s = Service("chromedriver.exe") driver = webdriver.Chrome(service=s, options=chrome_options) driver.get(url) print(driver.page_source)
标签:chrome,selenium,driver,爬取,ajax,ython,options,页面 From: https://www.cnblogs.com/ai594ai/p/17073426.html