I am automating test cases for an application which requires an authentication to launch homepage. I am using below code to make it work.
String url = "http://i.user:i.password@baseURL_1/home";
driver.get(url);
Once I am inside the application , there is another link called "workflow" , clicking on which opens another application of same system. i.e. it redirects to http://baseURL_2/home.
While opening page from second application , browser(Chrome) authentication window re-appears. How do I handle it in automation script?