selenium下载时提供文件名
我正在使用selenium脚本,在其中尝试下载Excel文件并为其指定特定名称。这是我的代码:
无论如何,我可以给下载的文件指定一个特定的名称吗?
码:
#!/usr/bin/pythonfrom selenium import webdriver
from selenium.webdriver.firefox.firefox_profile import FirefoxProfile
profile = FirefoxProfile()
profile.set_preference("browser.helperApps.neverAsk.saveToDisk", "text/plain, application/vnd.ms-excel, text/csv, text/comma-separated-values, application/octet-stream")
profile.set_preference("browser.download.dir", "C:\\Downloads" )
browser = webdriver.Firefox(firefox_profile=profile)
browser.get('https://test.com/')
browser.find_element_by_partial_link_text("Excel").click() # Download file
回答:
您不能通过硒指定下载文件的名称。但是,您可以下载文件,在下载的文件夹中找到最新文件,然后根据需要重命名。
注意:从Google搜索中借用的方法可能有错误。但是你明白了。
import osimport shutil
filename = max([Initial_path + "\\" + f for f in os.listdir(Initial_path)],key=os.path.getctime)
shutil.move(filename,os.path.join(Initial_path,r"newfilename.ext"))
以上是 selenium下载时提供文件名 的全部内容, 来源链接: utcz.com/qa/433174.html