我正在研究python和splinter。我想使用splinter从click事件下载文件。我写了以下代码
from splinter import Browser
browser = Browser('chrome')
url = "download link"
browser.visit(url)
我想知道如何使用splinter下载知道URL和文件名
答案 0 :(得分:1)
Splinter不参与下载文件。
也许您需要浏览页面才能找到确切的网址,然后使用常规requests
库进行下载:
import requests
url="some.download.link.com"
result = requests.get(url)
with open('file.pdf', 'wb') as f:
f.write(result.content)