您的位置:首页技术文章
文章详情页

Python selenium文件上传下载功能代码实例

【字号: 日期:2022-07-30 10:46:02浏览:3作者:猪猪

上传

html文件内容如下:操作步骤

<html><head><meta http-equiv='content-type' content='text/html;charset=utf-8' /><title>upload_file</title><script type='text/javascript' async=''src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script><link href='http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css' rel='external nofollow' rel='stylesheet' /><script type='text/javascript'></script></head><body> <div class='row-fluid'> <div class='span6 well'> <h3>upload_file</h3> <input type='file' name='file' /> </div> </div></body><script src='http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js'></script></html>

python上传源码

#coding=utf-8from selenium import webdriverimport timedriver = webdriver.Chrome()#打开上传文件页面driver.get('D://unload.html') #定位上传位置,添加本地文件upload = driver.find_element_by_name('file')upload.send_keys(’D://run.py’)#打印上传值print (upload.get_attribute(’value’))time.sleep(2)driver.quit()

上传文件结果

Python selenium文件上传下载功能代码实例

python下载文件源码

# -*- coding: utf-8 -*-from selenium import webdriverfrom time import sleepoptions = webdriver.ChromeOptions()#profile.default_content_settings.popups:设置为 0 禁止弹出窗口 download.default_directory:设置下载路径prefs = {’profile.default_content_settings.popups’: 0, ’download.default_directory’: ’d:921’}options.add_experimental_option(’prefs’, prefs)driver = webdriver.Chrome(chrome_options=options)#打开下载地址driver.get(’http://npm.taobao.org/mirrors/chromedriver/2.13/’)#点击下载链接下载driver.find_element_by_xpath(’/html/body/div[1]/pre/a[3]’).click()sleep(3)driver.quit()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持好吧啦网。

标签: Python 编程
相关文章: