Selenium2(java)selenium常用API 五
上传文件
元素标签是input时上传方式
上传是一个input,对于这种元素是input
的标签可以采用元素的sendKeys()方法来直接赋值,upload.html代码:
<html>
<head></head>
<body>
<input type="file" id="fileControl" value="选择文件">
</body>
<style type="text/css" id="1"></style>
</html>
具体代码:
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Upload1 {
public static void main(String[] args) {
WebDriver driver = new FirefoxDriver();
//打开上传的网页 - get中输入upload的地址
driver.get("D:\\Work\\eclipse_workspace\\seleniumdemo\\res\\upload.html");
WebElement e1 = driver.findElement(By.id("fileControl"));
//输入要上传文件的地址
e1.sendKeys("D:\\Work\\eclipse_workspace\\seleniumdemo\\res\\被上传的文件.txt");
try {
//等待2秒观察显示
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
driver.quit();
}
}
使用autoit脚本上传方式
它是一个使用类似BASIC脚本语言的免费软件,它设计用于Windows GUI(图形用户界面)中进行自动化操作。它利用模拟键盘按键,鼠标移动和窗口/控件的组合来实现自动化任务。
autoit安装包地址链接: http://pan.baidu.com/s/1dDL5Qhz 密码: yew5
二进制文件安装即可,打开autoit,主界面如下:

具体使用:
拖动Finder Tool到要定位到的弹窗上

获取到文件名输入框的classname

获取到打开按钮的classname
根据获取到的值编写autoit的脚本:
;fisrt make sure the number of arguments passed into the script is more than 1
If $CmdLine[0]<2 Then Exit ElseIf; if parmas num<2,then Break
;CmdLine[0];参数的数量
;CmdLine[1];第一个参数(脚本名称后面)
;CmdLine[2];第二个参数
;都是从cmd传入参数
handleUpload($CmdLine[1],$CmdLine[2])
;定义上传函数,有两个参数,第一个是浏览器的名字,第二个参数是文件路径
Func handleUpload($browser, $uploadfile)
Dim $title;定义一个title变量
;根据弹窗的title来判断是什么浏览器
If $browser = "ie" Then;代表chrome浏览器
$title="选择要加载的文件"
ElseIf $browser = "chrome" Then;
$title="打开"
ElseIf $browser="firefox" Then
$title="文件上传"
EndIf If WinWait($title,"",4) Then;等待弹窗出现,最大等待时间是4s
WinActivate($title);找到弹窗之后,激活当前窗口
ControlSetText($title,"","Edit",$uploadfie);把文件路径放入输入框
ControlClick($title,"","Button");点击保存或者打开或者上传按钮
Else
Return False
EndIf
EndFunc
文件保存为upload.au3,将文件转换成exe可执行文件
安装目录下的C:\Program Files (x86)\AutoIt3\Aut2Exe\Aut2exe_x64.exe

生成文件upload.exe
打开cmd,输入:"C:\Users\Administrator\Desktop\upload.exe" "firefox" "C:\Users\Administrator\Desktop\image.jpg" 双引号不要省略
在selenium中调用脚本,封装成一个执行这个exe文件的方法:
/**
*上传文件,需要点击弹出上传的窗口
*
*@param browser
*使用的浏览器名称
*@param file
*需要上传的文件及文件名
*/
public void handleupload(String browser, File file) {
String filepath = file.getAbsolutePath();
String executeFile = "C:\Users\Administrator\Desktop\upload.exe";//定义了upload.exe文件的路径
String cmd = "\"" + executeFile + "\"" + " " + "\"" + browsser + "\"" + " " + "\"" + filePath + "\"";
try {
Process p = Runtime.getRuntime().exec(cmd);
p.waitFor();
} catch(Exception e) {
e.printStackTrace();
}
}
具体步骤是:先去用selenium点击上传文件按钮,之后会弹出上传文件输入框,最后执行上面那个public void handleUpload(String browser, File file)方法即可。
Selenium2(java)selenium常用API 五的更多相关文章
- java selenium常用API(WebElement、iFrame、select、alert、浏览器窗口、事件、js) 一
WebElement相关方法 1.点击操作 WebElement button = driver.findElement(By.id("login")); button.clic ...
- java selenium常用API汇总
(WebElement.iFrame.select.alert.浏览器窗口.事件.js) 一 WebElement相关方法 1.点击操作 WebElement button = driver. ...
- Selenium Web 自动化 - Selenium常用API
Selenium Web 自动化 - Selenium常用API 2016-08-01 目录 1 对浏览器操作 1.1 用webdriver打开一个浏览器 1.2 最大化浏览器&关闭浏览器 ...
- 详解介绍Selenium常用API的使用--Java语言(完整版)
参考:http://www.testclass.net/selenium_java/ 一共分为二十个部分:环境安装之Java.环境安装之IntelliJ IDEA.环境安装之selenium.sele ...
- Selenium常用API的使用java语言之5-selenium元素定位
1.selenium定位方法 Selenium提供了8种定位方式. id name class name tag name link text partial link text xpath css ...
- Java 之常用API(一)
常用API 1 API概述 2 Scanner类与String类 3 StringBuilder类 NO.one API概述 1.1 API概述 API(Application Programm ...
- Java之常用API
API概述 什么是API API (Application Programming Interface) :应用程序编程接口 java中的API 指的就是 JDK 中提供的各种功能的 Java类,这些 ...
- Selenium2(java)selenium常用API 四
WebElement相关方法 1.点击操作 WebElement button = driver.findElement(By.id("login")); button.click ...
- Selenium2(java)selenium常用API 六
selenium处理HTML5 处理Vedio WebDriver driver = new FirefoxDriver(); driver.get("http://videojs.com/ ...
随机推荐
- css选择器的优先级别
<html><head lang="en"> <meta charset="UTF-8"> <title>< ...
- listView上拉刷新下拉加载
xlistview_header.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLa ...
- 原创:LoadTest系列之Local.testtings之Web Test
在录制脚本后,需要对脚本进行回放,而在Loal.testting的Web Test设置中,可以设置脚本运行的次数,以及是否考虑think time等,如下图所示: 1. 双击Solution Item ...
- linux安装安卓开发工具android studio
http://www.android-studio.org/ http://android-studio.org/index.php/docs/guide 最近要接触android编程,本来想装ecl ...
- 超级好用的excel第三方组件
http://www.cnblogs.com/MR_ke/archive/2010/02/25/1673243.html 前一篇介绍了怎么用com操作excel,后来有朋友说用NPOI好,下面我也来介 ...
- GPRS优点介绍及GPRS上网相关知识(转)
源:http://blog.chinaunix.net/uid-20745340-id-1878732.html 单片机微控制器以其体积小.功耗低.使用方便等特点,广泛应用于各种工业.民用的嵌入式系统 ...
- Ext中包含了几个以get开头的方法
Ext中包含了几个以get开头的方法,这些方法可以用来得到文档中DOM.得到当前文档中的组件.得到Ext元素等,在使用中要注意区别使用.1.get方法get方法用来得到一个Ext元素,也就是类型为Ex ...
- perties类的操作
http://www.cnblogs.com/bakari/p/3562244.html perties类的操作 知识学而不用,就等于没用,到真正用到的时候还得重新再学.最近在看几款开源模拟器的源 ...
- ibatis一对多 数据库设计及实现
iBatis的多表关联. ibatis的表关联,和数据库语句无关,是在Java程序中,把若干语句的结果关联到一起.这种关联形式,虽然在大数据量时是很奢侈的行为,但是看起来很干净,用起来也很方便. 这里 ...
- eclipse java生成exe
eclipse导出jar文件再将它转换成exe可执行文件详解 关键字: 欢迎光临 此文章是为了帮助刚接触j2se或不懂如何打包jar文件的人而着笔,同时也是让自己的知识以文章的形式保存起来. 一.导出 ...