Fix lint errors in Angular cli – User friendly Tech help

The mind, once stretched by a new idea, never regains its original dimensions. n 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 ? n n Solution:- n Run the below command n tslint –fix src/**/*.ts -t verbose n Note:–…

Understanding important concepts of Java for Selenium – User friendly Tech help

We would be highlighting some of the most vital concepts of Java used in Selenium.Hope it assist our readers to learn and incorporate it while creating the Selenium scripts. n n Final Keyword n Interface in Java n Meaning of Static in Java  n n Why we use Final Keyword ? n We can use…

Automation Framework Generations. – User friendly Tech help

Automation Frameworks in Testing?nWe can divide automation frameworks into below major categories it is like different generations of evolvement of Computers, on the same track we can define various improvements in automation testing as generations of Automation frameworks. nnGenerations of Automation Frameworksn n n n n n Human Evolution n n n nFirst Generation:- n n  This…

How to update node to a given version – User friendly Tech help

Scenario:- Update node to the given version ? n Solution:-  n Using nvm:-Node Version Manager n Install nvm  n curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash n n Reopen the terminal n Check nvm is installed by typing nvm > enter > it will show nvm commands n nvm install Node_Version_i_Want n n $ nvm install 8.9.4…

Working with Object Repository Merge Tool in UFT/QTP – User friendly Tech help

Scenario:- How we can merge two object Repositories in UFTnnnSolution:- We need to use “Object Repository Merge Tool ” available in “Object Repository Manager” in UFT.nnLocate:- Resources – Object Repository Manager – Tools – Object Repository Merge Toolnn nnImportant :- n n Used for Merging and Resolving Conflicts n We cannot work with Object Repository Manager or the Object Repository…

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…

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…

How to make Password field visible to user in Angular JS? – User friendly Tech help

From long back we were planning to share our knowledge on the emerging technologies in the world. To quench your thirst we are launching our first post on Angular JS pragmatic scenarios.Hope your feedback and suggestions will motivate us to share more with the technology lovers. n Requirement:- How a user can check the password entered…

UFT Basic Interview Questions? – User friendly Tech help

We thought of sharing some more basic questions regarding UFT/QTP.nnWe hope it’ll definitely help the testing community.Please share your feedback or your experiences. Do like our Facebook page for more updates.nn1.Why we use “PathFinder” object in QTP?nn2.What are regular expressions in QTP?nn3.Explain “QcUtil” object ?nn4.How we can achieve synchronization in QTP/UFT?nn5.Meaning of Descriptive Programming?nn6.Please give…

Understanding Selenium IDE? – User friendly Tech help

What is Selenium IDE?nnSelenium IDE is a fully-functional Integrated Development Environment (IDE) that installs as a plugin in Mozilla Firefox, which empower developers to test web applications. With the Selenium IDE, we can record user interactions with the web browser and play them back to the application.nnThus it works on the core principle of Record…