package newpackage;
import org.openqa.selenium.By;
import org.openqa.selenium.Keys;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.WebElement;//webElement 사용
import org.openqa.selenium.support.ui.Select;//Select 사용
import org.openqa.selenium.interactions.Action;
import org.openqa.selenium.interactions.Actions;//Action 사용
public class MyClass {
public static void main(String[] args){
System.setProperty("webdriver.chrome.driver", "c:/selenium/chromedriver.exe");
WebDriver driver = new ChromeDriver();
String getURL = "http://demo.guru99.com/test/upload/";
driver.get(getURL);
WebElement uploadElement = driver.findElement(By.name("uploadfile_0"));
uploadElement.sendKeys("원하는 파일 경로를 넣으시면 됩니다");//따옴표 안에 파일경로 입력
driver.findElement(By.id("terms")).click();
driver.findElement(By.name("send")).click();
}
}
728x90
반응형
LIST
'블로그자동화' 카테고리의 다른 글
selenium 경고창에 취소 누르기 (0) | 2024.01.23 |
---|---|
카카오 애드핏 신청기 (7) | 2024.01.16 |
나이키 에브리데이 쿠션 장목양말 1팩 3세트 SX7664-100 사용후기 (0) | 2024.01.05 |
자동글쓰기 테스트 (1) | 2023.12.26 |
블로그 자동화 공부하기 (0) | 2023.12.25 |