Similar Posts
Understanding the ‘Use Strict’ in JavaScript – User friendly Tech help
What is ‘Use Strict’?nnThe “use strict” is new feature in JavaScript 1.8.5 (ECMAScript version 5) that permits us to put a program/function in a “strict mode”. It allows to write “Secure” JavaScript.n Strict mode prevents certain actions from being taken and throws more exceptionsn nNeed of Strict Moden n n It catches some common…
Synchronization in UFT – User friendly Tech help
We are already done with the synchronization in selenium, today we would discussing the same in UFT.Before starting with the synchronization we would recommend to use Exist,WaitProperty,Sync rather than using Wait. n 1.waitnThis is used when we want UFT to wait for the specified time, so that AUT completes its current operations.It is like pausing…
Angular – User friendly Tech help
The mind, once stretched by a new idea, never regains its original dimensions. Problem:- In Angular cli after executing the command ng lint shows a lot of lint errors based on the configuration `tslint.json`, how to fix lint errors ? Solution:- Run the below command tslint –fix src/**/*.ts -t verbose Note:– It will fix most of the…
Introduction to Appium(Mobile Testing) – User friendly Tech help
Mobiles are everywhere; our day starts with an alarm ringing on phone and ends with WhatsApp or buffering some social media portal. Do we ever think that we are surrounded by mobile applications everywhere, from checking weather, transit, shopping, video chats or banking and so on? n Each day hundreds of new mobile apps are…
Implement Robot Framework using RIDE (Part-2) – User friendly Tech help
In our part-1 we learned how to work with existing test case written as .robot/.txt inside RIDE.nnHere we would learn to implement the robot framework functionality in RIDE itself.Further we would move towards best approach in RF.nDo follow us on Fb,G+,Twitter, it encourages us to learn and share more.nRequirement:- Enhance our existing test case using…
Descriptive Programming in UFT – User friendly Tech help
Please refer the below video, it covers basics of DP, How to use DP, Practical Examples of DP, Types of DP , Limitations of DP.nnWhat is DP?n n n Descriptive programming n Smart way of automation testing in UFT n n nn Where to Use?n n n Objects in application are dynamic n OR size…