Below is my AutoIt script (UI3_Authentication.au3) for handling a Windows authentication pop up.
AutoItSetOption(\"WinTitleMatchMode\",\"2\")
WinWait(\"Aut
I resolved this. Actually, it was my bad. Previously, my code was like this:
c1.get(“http://www.test.com”);
Runtime.getRuntime().exec("C:\\POM_Newdemo\\EF_Automation_Demo\\UI3_Authentication.exe");
I Added autoit code before my get() as follows, and it worked:
Runtime.getRuntime().exec("C:\\POM_Newdemo\\EF_Automation_Demo\\UI3_Authentication.exe");
c1.get(“http://www.test.com”);