selenium python (十四)上传文件的处理

#!/usr/bin/python
# -*- coding: utf-8 -*-
__author__ = ‘zuoanvip‘

#上传过程一般要打开一个系统的windows窗口,从窗口选择本地文件添加。所以一般会卡在如何操作本地window窗口。解决的方法很简单,只需要定位到上传按钮,然后通过send_keys添加本地文件路径即可
from selenium import webdriver
import  os
import time

driver = webdriver.Firefox()

#打开上传页面
file_path = ‘file:///‘+os.path.abspath()
driver.get(file_path)

#定位上传按钮,添加本地文件
driver.find_element_by_name(‘file‘).send_keys(‘D:\\selenium_use_case\upload_file.text‘)

time.sleep(5)

==========================================================

upload_file.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/bootstrapcombined.min.css"
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/twitterbootstrap/2.3.2/js/bootstrap.min.js"></script>
</html>

时间: 2024-11-03 21:11:38

selenium python (十四)上传文件的处理的相关文章

python各种post上传文件

1.带证书上传文件 filename = '/tmp/test.cert'hash_v = 'assumethisisahash' #这是一种流式上传的方式with open(filename, 'rb') as f:....requests.post(link, data={'hash': hash_v}, files={'filename':f}, verify='/tmp/test.cert') 2.最简单的流式上传 with open('massive-body') as f: requ

Ajax+Python flask实现上传文件功能

HTML: <div > <input type="file" name="FileUpload" id="FileUpload"> <a class="layui-btn layui-btn-mini" id="btn_uploadimg">上传图片</a> </div> Ajax实现: <script type="text/js

【python】django上传文件

参考:https://blog.csdn.net/zahuopuboss/article/details/54891917 参考:https://blog.csdn.net/zzg_550413470/article/details/51538814 参考:https://www.cnblogs.com/linxiyue/p/7442232.html django 文件存储:https://docs.djangoproject.com/en/dev/ref/files/storage/ djan

python django 批量上传文件并绑定对应文件的描述

修改request.POST.get() 为 request.POST.getlist()结果如底下截图的蓝色横条处,完全符合项目的要求 后台数据库对于图片存储的字段只有一个,不可能有多少张照片就要多少个字段来存储.也就是说, 1:每次只能在后台存一张到数据库, 2:在前台展示的时候,直接可以循环这一个字段来展示我的图片 那么这就涉及到一个列表(字典)跟数据循环存储的东西了 用到字典是因为我每张图片还有各自的图片描述,这两个信息时同时提交跟保存的. 把图片保存的url跟他的描述做成列表,然后再循

python 实现远程上传文件夹

python2 upload.py "ip" "root" "password" "22" "Only Project DLL" "d:\ENZO\Publish\Wxcrm.Admin\bin\release\netcoreapp2.1\centos.7-x64\publish" "/mondao/deployment/wxcrm-admin" #!/usr/bin

Python 模拟postman上传文件

最近工作需求:写的程序要用到python模拟postman操作,基于flask框架 代码很简单 但是百度一半天: import requests files = {'skFile': open(r"C:\Users\TOPFEEL\Pictures\0.jpg", 'rb')} r = requests.post("http://192.168.4.178:5000/upload", files=files) 原文地址:https://www.cnblogs.com

python实例编写(3)--对话框,多窗口,下拉框,上传文件

一.对话框: 例:点击百度的登录,弹出的小窗口 #coding=utf-8 from selenium import webdriver from time import sleep dr=webdriver.Chrome() dr.get("http://www.baidu.com") #一定要记得设置等待时间,要不然定位不到!!! dr.find_element_by_link_text("登录").click() sleep(3) #思路:二次定位,点击登录后

Selenium 上传文件失败,解决办法一

昨个改程序遇到一个问题,UI上面有需要上传文件的地方.但是我不知道怎么让Selenium完成 点击上传文件按钮->在弹出的文件选择窗口中选择路径和文件,点确定. 要知道弹出窗口属于window的范畴,Selenium只能处理Web page. Jeremy原先的代码用的是Selenium RC中的 type “filepath+filename”方法.可不知咋搞的反正运行到这里是进行不下去了. 正好借这个机会来研究一下在Webdriver里怎么做. 我自己写了个网页,里面就一句 我先是用Sele

Ajax--参数,csrf跨站请求伪造,serialize(),上传文件formdata

https://cdn.bootcss.com/jquery-cookie/1.4.1/jquery.cookie.js. 一:参数,processData,contentType,traditional,dataType ######################------------data---------################ data: 当前ajax请求要携带的数据,是一个json的object对象,ajax方法就会默认地把它编码成某种格式 (urlencoded:?a=

python +selenium上传文件

python +selenium上传文件 分为2部分 1.是input标签 driver.find_element_by_name("upload").send_keys('C:\\test.txt') 2.非input标签 https://blog.csdn.net/weixin_42024694/article/details/80080629 原文地址:https://www.cnblogs.com/ljf520hj/p/12181098.html