Se(10)—上传文件

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();

}

}

原创文章,作者:kepupublish,如若转载,请注明出处:https://blog.ytso.com/191974.html

(0)
上一篇 2021年11月14日
下一篇 2021年11月14日

相关推荐

发表回复

登录后才能评论