I am a beginner in automation tetsing,when I tried to run the below code, chrome got launched successfully but getting sign in pop up
public class Locators {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "C:\\Program Files\\Java\\Chrome\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(4000));
driver.manage().window().maximize();
driver.navigate().to("https://www.google.com");
driver.findElement(By.xpath("//*[@id=\"input\"]")).sendKeys("selenium tutorial");
}
}
Popup image:

