Learn Selenium
Download Browser ( in my case, download chrome) Download Web Driver browser Chrome (note: make sure version driver same with browser) Let’s Code
pom.xml
<dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>4.15.0</version> </dependency>
App.java
package com.putracode; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import java.util.logging.Level; import java.util.logging.Logger; /** * Hello world! * */ public class App { public static […]