Similar Posts
Various methodologies to Kill running Process in Task Manager. – User friendly Tech help
Approach 1:- Without using UFT and we will simply create a .VBS file on the system and Run it. n ‘*******************************************Sub***************************************************’Function Name:- fn_KillMe’Function Description:- Kills the Given process using Run Command’Input Parameters:- sProcess,(Process Name)’Output Parameters:- Process Killed Message”**************************************************************************************************msgbox fn_KillMe(“Notepad.exe”)Public Function fn_KillMe(sProcess) On Error Resume Next Dim objShell,sStatus ‘Creating WSH object Set objShell = CreateObject(“WScript.Shell”) ‘Executing…
API testing interview Questions-1 ? – User friendly Tech help
n nDo follow us for more updates on Fb,G+,Twitter.nnBasic API Testing interview questions:–nn1.What is the meaning of HTTP protocol?nn2.What are the range of methods available in HTTP? n 3.What is the difference between PUT and POST method?nn4.What are the different HTTP status codes?nn5.Why we use 5XX error code?nn6.How we can filter the Head of the response?nn7.What…
Tips and Tricks for working with Robot Framework – Part-1 – User friendly Tech help
If you are still looking for that one person who will change your life, take a look in the mirror.nnProblem1:- How i can generate random test data in Robot framework?nnSolution:- Use FakerLibrarynnInstall :- npip install robotframework-fakernnNote:- Include FakerLibrary in settings as “Library FakerLibary”nnExample:- To generate random number we can use code as below:-nnn Problem2:- How to…
How to Select random value from a DropDownList using Selenium or UFT – User friendly Tech help
Requirement:- We need to select random value from a given dropdownlist, to test the functionality how our AUT would behave under varying selection of options. n n n n n n DropDownlist + HTML code n n n nApproach:-n1.We would take the count of existing options in the weblist/dropdownlist .n2.Take a random value between 0(starting…
How to optimize the performance of ng-repeat in AngularJS? – User friendly Tech help
Today we would focus on improving the performance of Angular JS code by learning the basics of ng-repeat and then how to enhance its capabilities.nnFollow us for more learning Fb,G+,Twitter.nnng-repeat :- nIt is directive which create instant of template for each item in the collection. It is identical to looping concept in any language say Java, for…
How to debug jest test cases(React)? – User friendly Tech help
Adding test cases to your code always helps in the long run, today we’re going to talk about how to debug test cases. n n Do something today that your future self will thank you for n n n Using our all-time favorite Console.logn it(‘should call touch & asyncValidate methods’, () => {n const component…