RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Se(10)---上传文件

package test;

创新互联自2013年创立以来,公司以成都网站设计、做网站、成都外贸网站建设公司、系统开发、网络推广、文化传媒、企业宣传、平面广告设计等为主要业务,适用行业近百种。服务企业客户上千多家,涉及国内多个省份客户。拥有多年网站建设开发经验。为企业提供专业的网站建设、创意设计、宣传推广等服务。 通过专业的设计、独特的风格,为不同客户提供各种风格的特色服务。

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)---上传文件
标题网址:http://scyingshan.cn/article/gigphs.html