This is the code
package FirstPackage;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
public class FirstSeleniumProject {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "C:\\Users\\KSaraswathiChowdary\\Downloads\\chromedriver_win32.exe");
WebDriver driver = new ChromeDriver();
driver.get("
http://edureka.co");
}
}