Similar Posts
Cracking JavaScript,HTML and CSS Interviews (Part-1) – User friendly Tech help
Today we are sharing our first interview post for our web developer community. Hope it facilitate them in achieving their aspirations.n“First they ignore you. Then they laugh at you. Then they fight you. Then you win.” by Nicholas Klein n n n n n n Add caption n n n JavaScript:-n1) what are the Data types…
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…
Robot Framework: – Cannot import name XmlElementHandler Error – User friendly Tech help
After upgrading to the latest version of Robot Framework and RIDE and rerunning existing scripts, we were surprised to get the “Cannot import name XmlElementHandler” nn Solution:- n Step1:- Try to locate the missing file in robot setup that is installed on the system. n In our case it was XmlElementHandler, after some investigation (by…
Omniscript – User friendly Tech help
How to show prompt in omniscript when the user is trying to refresh the step in omniscript? Yes that is possible Problem- As per the current version of OS, when the user refreshes the current page (step in OS terms), it takes user back to the initial step, without saving the changes. To avoid the…
Call to Existing Action in UFT ? – User friendly Tech help
What is a Action in UFT ? n Action is a logical set of statements which provides structure to our automation testing.In simple words,Actions help us divide our test into logical parts.For instance our Application = ‘Booking Tickets”, can have action’s like Login to application, Book the ticket, Credit card payment and Logout .nThus we…
Console.log trick for debugging – User friendly Tech help
Why need see our debug messages bigger and brighter, simply use the below trick. n console.log(‘%c This is my log for debugging’, ‘font-size: 40px; color: green;’); n n n “Striving for excellence motivates you; striving for perfection is demoralizing.” n MatteoWas this article helpful?YesNo