I've tried to login with selenium on Chrome browser but I get the error:
Couldn’t sign you in
This browser or app may not be secure. Learn more
Try using a different browser. If you’re already using a supported browser, you can try again to sign in.
System.setProperty("web.driver.chrome.driver", "C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe"); WebDriver driver = new ChromeDriver();driver.get("https://accounts.google.com");driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);driver.findElement(By.id("identifierId")).sendKeys(email);driver.findElement(By.xpath("//*[@id=\'identifierNext\']/div/button/span")).click();driver.findElement(By.name("Passwd")).sendKeys(password);driver.findElement(By.xpath("//*[@id=\'passwordNext\']/div/button/span")).click();