Tuesday, March 28, 2017

Protractor :- E2E Framework

Automation: - People say this buzz word is the theft for current IT industry, but I find this as an opportunity to learn new tools & technologies. Since now days every IT Leader suggests two things with much illustrative examples. a. Learn & Unlearn b. Adapt to win. It can only happen, if people share their findings with others.


With this faster changing industry started my R&D to prepare E2E Automation Framework to accommodate “Angular JS” applications. Finally, 3 days’ effort paid off. Attaching the detailed architecture of the framework. Please let me know if you need any help from coding perspective.


Wednesday, March 1, 2017

Handle Browser Authentication PopUp

Many times we troubleshoot to encounter “Authentication Popups Window” during Web Application Automation or Web services automation using selenium.It’s pretty simple & tricky.


  •        Web Application:-  We can generally handle this with the below 2 approaches.
1.      Pass the username and password in URL itself
Example :-  Suppose Username :- Test, Password :- Test123 & URL :- http://www.test.com
Syntax :-  http://[Username]:[Password]@[URL]
    http://Test:Test123@www.test.com
2.      You can create an AutoIT Script and call script before opening the URL.


  •               Web Services:-  The approach is same as mentioned in section 1 of “Web Application”. Only  difference – Instead of URL we use end point in case of web services.