设为首页 收藏本站
查看: 771|回复: 0

[经验分享] python selenium +autoit实现文件上传

[复制链接]

尚未签到

发表于 2015-12-3 08:22:26 | 显示全部楼层 |阅读模式
  upload.html



<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form action="doAction2.php"  method="post" enctype="multipart/form-data">
<!--<input type= "hidden" name="MAX_FILE_SIZE" value='10000000024' /> -->
请选择您要上传的文件:
<!--<input type='file' name='myFile' accept="image/jpeg,image/gif,image/png"/> -->
<input type='file' name='myFile' />
<br />
<input type="submit" id="upload" "value="upload" />
</form>

</body>
</html>
  doAction2.php



<?php   
header('content-type:text/html;charset=utf-8');  
require_once 'upload2.class.php';
//print_r($_FILES);
$upload=new upload('myFile','imooc');  
$dest=$upload->uploadFile();  
echo $dest;
?>
  upload2.class.php



<?php   
class upload{  
protected $fileName;  
protected $maxSize;  
protected $allowMime;  
protected $allowExt;  
protected $uploadPath;  
protected $imgFlag;  
protected $fileInfo;  
protected $error;  
protected $ext;  
/**
* @param string $fileName
* @param string $uploadPath
* @param string $imgFlag
* @param number $maxSize
* @param array $allowExt
* @param array $allowMime
*/  
public function __construct($fileName='myFile',$uploadPath='./uploads',$imgFlag=true,$maxSize=5242880,$allowExt=array('jpeg','jpg','png','gif'),$allowMime=array('image/jpeg','image/png','image/gif')){  
$this->fileName=$fileName;  
$this->maxSize=$maxSize;  
$this->allowMime=$allowMime;  
$this->allowExt=$allowExt;  
$this->uploadPath=$uploadPath;  
$this->imgFlag=$imgFlag;  
$this->fileInfo=$_FILES[$this->fileName];  
}  
/**
* 检测上传文件是否出错
* @return boolean
*/  
protected function checkError(){  
if(!is_null($this->fileInfo)){  
if($this->fileInfo['error']>0){  
switch($this->fileInfo['error']){  
case 1:  
$this->error='超过了PHP配置文件中upload_max_filesize选项的值';  
break;  
case 2:  
$this->error='超过了表单中MAX_FILE_SIZE设置的值';  
break;  
case 3:  
$this->error='文件部分被上传';  
break;  
case 4:  
$this->error='没有选择上传文件';  
break;  
case 6:  
$this->error='没有找到临时目录';  
break;  
case 7:  
$this->error='文件不可写';  
break;  
case 8:  
$this->error='由于PHP的扩展程序中断文件上传';  
break;  
}  
return false;  
}else{  
return true;  
}  
}else{  
$this->error='文件上传出错';  
return false;  
}  
}  
/**
* 检测上传文件的大小
* @return boolean
*/  
protected function checkSize(){  
if($this->fileInfo['size']>$this->maxSize){  
$this->error='上传文件过大';  
return false;  
}  
return true;  
}  
/**
* 检测扩展名
* @return boolean
*/  
protected function checkExt(){  
$this->ext=strtolower(pathinfo($this->fileInfo['name'],PATHINFO_EXTENSION));  
if(!in_array($this->ext,$this->allowExt)){  
$this->error='不允许的扩展名';  
return false;  
}  
return true;  
}  
/**
* 检测文件的类型
* @return boolean
*/  
protected function checkMime(){  
if(!in_array($this->fileInfo['type'],$this->allowMime)){  
$this->error='不允许的文件类型';  
return false;  
}  
return true;  
}  
/**
* 检测是否是真实图片
* @return boolean
*/  
protected function checkTrueImg(){  
if($this->imgFlag){  
if(!@getimagesize($this->fileInfo['tmp_name'])){  
$this->error='不是真实图片';  
return false;  
}  
return true;  
}  
}  
/**
* 检测是否通过HTTP POST方式上传上来的
* @return boolean
*/  
protected function checkHTTPPost(){  
if(!is_uploaded_file($this->fileInfo['tmp_name'])){  
$this->error='文件不是通过HTTP POST方式上传上来的';  
return false;  
}  
return true;  
}  
/**
*显示错误  
*/  
protected function showError(){  
exit('<span>'.$this->error.'</span>');  
}  
/**
* 检测目录不存在则创建
*/  
protected function checkUploadPath(){  
if(!file_exists($this->uploadPath)){  
mkdir($this->uploadPath,0777,true);  
}  
}  
/**
* 产生唯一字符串
* @return string
*/  
protected function getUniName(){  
return md5(uniqid(microtime(true),true));  
}  
/**
* 上传文件
* @return string
*/  
public function uploadFile(){  
if($this->checkError()&&$this->checkSize()&&$this->checkExt()&&$this->checkMime()&&$this->checkTrueImg()&&$this->checkHTTPPost()){  
$this->checkUploadPath();  
$this->uniName=$this->getUniName();  
$this->destination=$this->uploadPath.'/'.$this->uniName.'.'.$this->ext;  
if(@move_uploaded_file($this->fileInfo['tmp_name'], $this->destination)){  
return  $this->destination;  
}else{  
$this->error='文件移动失败';  
$this->showError();  
}  
}else{  
$this->showError();  
}  
}  
}  
  
upload.py



#coding=utf-8
from selenium import webdriver
import os,time
driver=webdriver.Chrome()
file_path =  'http://localhost/upload.html'
driver.get(file_path)
time.sleep(2)
driver.find_element_by_name("myFile").click()
os.system("uploadfile.exe")
time.sleep(2)
driver.find_element_by_id("upload").click()
time.sleep(2)
driver.quit()
  uploadfile.au3



;ControlFocus("title","text",ControlID) Edit1=Edit instance 1
ControlFocus("Open","","Edit1")
;wait 10 seconds for the upload window to appear
WinWait("[CLASS:#32770]","",10)
;set the File name text on the Edit field
ControlSetText("Open","","Edit1",".\1.jpg")
Sleep(2000) ;
;Click on the open button
ControlClick("Open","","Button1");
  

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-146558-1-1.html 上篇帖子: 简易web server之python实现 下篇帖子: [Leetcode][Python]50: Pow(x, n)
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表