I am doing automation using Selenium WebDriver and want to handle a browser authentication window. I know Selenium does not support this on its own but I am able to using AutoIt. We have to share our code with the client, so can AutoIt code be managed from Eclipse? This is the code:
WinWaitActive("Authentication Required", "", "120")
If WinExists("Authentication Required") Then
Send("username{TAB}")
Send("password{Enter}")
EndIf
Code to run the AutoIt.exe from Eclipse:
Runtime.getRuntime().exec("C:\\NewAutoIT.exe");
Is there any way to manage AutoIt code from Eclipse?