码迷,mamicode.com
首页 > Web开发 > 详细

Se(10)---上传文件

时间:2017-05-07 10:07:03      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:se

package test;


import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.WebElement;

import org.openqa.selenium.chrome.ChromeDriver;

import org.testng.annotations.Test;


public class lesson9 {


@Test

public void test() throws InterruptedException{

System.setProperty("webdriver.chrome.driver", "D:/01 Learn WebDriver/chromedriver.exe");

WebDriver dr = new ChromeDriver();

dr.manage().window().maximize();

        dr.get("http://www.layui.com/demo/upload.html");

        Thread.sleep(3000);

        

        //上传文件

WebElement el1 = dr.findElement(By.id("test"));

el1.sendKeys("d:/1.jpg");

//dr.quit();

}

}


Se(10)---上传文件

标签:se

原文地址:http://11009785.blog.51cto.com/10999785/1922697

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!