์๋ ๋ก๊ทธ์ธ ํ๋ก๊ทธ๋จ
๋ค์ด๋ฒ์ ์๋๋ก๊ทธ์ธ ํ๋ ์ฝ์ ํ๋ก๊ทธ๋จ์ ๋ง๋ค์ด ๋ด
๋๋ค.
1.
ํ๋ก์ ํธ ์์ฑ
2.
๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ถ๊ฐํ๊ธฐ
a.
Selenium
b.
Lombok
3.
์ฝ๋ฉ
4.
ํ๋ก์ ํธ ๋ฐฐํฌ
5.
์คํ
ํ๋ก์ ํธ ์์ฑ
VS CODE
1.
๋ช
๋ น ํ๋ ํธ (ctrl + shift + P)
2.
Java: Create Java Projectโฆ
a.
No Build Tool
b.
Select this project location
c.
Input a Java project name : AutoLogin
i.
ํ๋ก์ ํธ๋ช
: AutoLogin ์
๋ ฅ
Java: Create Java Projectโฆ
No Build Tool
Select this project location
Input a Java project name : AutoLogin
1.
ํ๋ก์ ํธ๋ช
: AutoLogin ์
๋ ฅ
๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ถ๊ฐํ๊ธฐ
VSCODE
VSCODE ์์ ์์ฑํ Java Project ์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ถ๊ฐํ ๋๋ ํ๋ก์ ํธ ์๋ lib ํด๋์ .jar ๋ผ์ด๋ธ๋ฌ๋ฆฌ ํ์ผ์ ์ถ๊ฐํ๋ฉด ๋ฉ๋๋ค.
ํ์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ
์๋ ํ์ ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ๋ค์ด๋ก๋ ๋ฐ์ ํ๋ก์ ํธ์ ์ถ๊ฐํฉ๋๋ค.
1.
Selenium
2.
Lombok
Selenium
Selenium์ ์น ๋ธ๋ผ์ฐ์ ๋ฅผ ์๋ํํ๋ ๋๊ตฌ๋ก, ์น ์ ํ๋ฆฌ์ผ์ด์
์ ํ
์คํธ ์๋ํ์ ๋๋ฆฌ ์ฌ์ฉ๋ฉ๋๋ค. ์น ํ์ด์ง์ ์์๋ฅผ ์ฐพ๊ณ , ํด๋ฆญํ๊ณ , ํ
์คํธ๋ฅผ ์
๋ ฅํ๋ ๋ฑ์ ์์
์ ์๋ํํ ์ ์์ด ๋ฐ๋ณต์ ์ธ ์น ์์
์ ํจ์จ์ ์ผ๋ก ์ฒ๋ฆฌํ ์ ์์ต๋๋ค.
โข
commons-exec
โข
failureaccess
โข
guava
โข
selenium-api
โข
selenium-chrome-driver
โข
selenium-chromium-driver
โข
selenium-devtools-vxx
โข
selenium-http
โข
selenium-java
โข
selenium-json
โข
selenium-manager
โข
selenium-os
โข
selenium-remote-driver
โข
selenium-support
Lombok
Lombok์ Java ๊ฐ๋ฐ์์ ๋ฐ๋ณต์ ์ธ ์ฝ๋ ์์ฑ์ ์ค์ฌ์ฃผ๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์
๋๋ค. Getter, Setter, Constructor ๋ฑ์ ์๋์ผ๋ก ์์ฑํด์ฃผ์ด ๊ฐ๋ฐ ์์ฐ์ฑ์ ํฌ๊ฒ ํฅ์์ํต๋๋ค.
์ฝ๋ฉ
module-info.java
module AutoLogin {
requires org.seleniumhq.selenium.api;
requires org.seleniumhq.selenium.chrome_driver;
}
Java
๋ณต์ฌ
Main.java
package login;
import java.util.Scanner;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
public class Main {
public static WebDriver driver = new ChromeDriver();
public static void main(String[] args) {
// ํฌ๋กฌ์์ ๋ค์ด๋ฒ ์คํํ๊ธฐ
driver.get("https://nid.naver.com/nidlogin.login");
Scanner sc = new Scanner(System.in);
System.out.print("์์ด๋ : ");
String id = sc.nextLine();
System.out.print("๋น๋ฐ๋ฒํธ : ");
String pw = sc.nextLine();
// ์์ด๋/๋น๋ฒ ์
๋ ฅ
JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("document.getElementById('id').value='" + id + "'");
js.executeScript("document.getElementById('pw').value='" + pw + "'");
// ๋ก๊ทธ์ธ ๋ฒํผ ํด๋ฆญ
WebElement loginButton = driver.findElement(By.id("log.login"));
loginButton.click();
sc.close();
}
}
Java
๋ณต์ฌ
ํ๋ก์ ํธ ๋ฐฐํฌ
๋ฐฐํฌ๋?
๋ฐฐํฌ๋ ๊ฐ๋ฐํ ํ๋ก๊ทธ๋จ์ ์ฌ์ฉ์๊ฐ ์คํํ ์ ์๋๋ก ํจํค์งํ๊ณ , ์ด๋ฅผ ๋ฐฐํฌ ๊ฐ๋ฅํ ํํ๋ก ์ ๊ณตํ๋ ๊ณผ์ ์
๋๋ค.
โข
VS CODE
โข
Eclipse
VS CODE
(์์ฑ์ค โฆ)
Eclipse
1.
ํ๋ก์ ํธ ์ฐํด๋ฆญ
2.
Export
3.
Java
a.
Runnable JAR File