Handling Security Authentication Pop-up Using Autoit-Selenium WebDriver!!!

10:02 PM 1 Comments

Implementation of AUTO IT in Selenium
Pre-Requisites: Download the AutoIT Full Installation and AutoIT Script Editor from the url AutoIT Website  http://www.autoitscript.com/site/autoit/downloads/
Download both the AutoIt Window Identification and Editor


Handling HTTPS pop-up using Auto it->

Url to access-> http://www.engprod-charter.net/

Step 1- Open Autoit Editor and write the following script

 Step2-Write the below program and Save the program.
$title= "Authentication Required"
WinWaitActive($title)
send("sudheer")
send("{TAB}")
send("welcome")
send("{ENTER}")
  
Step3- Compile the Script which generates the .exe file.
Step4-Execute the Script
Step5- Implement this selenium.
Runtime.getRuntime().exec("Absolute path to the https autoit script ");

Unknown

This site creates a platform to become an expert by gaining knowledge of unknown real-time issues as well.

1 comments:

Unknown said...

My Selenium code written using webdriver is not recognizing the AutoIt script for window's authentication.Can anyone help me here?