Executing Failed TestCases in Selenium using TestNG – User friendly Tech help

Scenario:-nWe want to re-run only the failed testcases in selenium, rather than running the entire suite.nnApproach:-nEvery time tests fail in a suite, TestNG creates a file called testng-failed.xml in the output directory. This XML file contains the necessary information to rerun only these methods that failed, utlizing this we can easily rerun the failed tests…

Utility Objects in UFT – User friendly Tech help

Meaning of Utility Objects:- n Utility objects are basically reserved keywords in UFT . This means their functionality is already defined in UFT compiler .For example in C language we used “Printf”  function, whose meaning was defined in  standard library of functions that were accessible by C program.n n On the same tracks UFT provides…

Answer List for HPUFT Questions (Part-1):- – User friendly Tech help

1. 256 columnsn2. We can’t save local OR it is saved by default .n3. Please refer the below :- n n .QFL (Quick Test Function Library) n .QRS(Quick Test Recovery Scenario) n .TSR(Test Script Repository) , Friends we used to refer this as Test Shared Repository, but after clarification from HP Training team we got…

How to create project in Sonar Qube ? – User friendly Tech help

Problem:- How we can create(or provision) project using Sonar Qube UI.n n Solution:- We already know that we can Sonar Qube will automatically create a project when we run the code analysis but incase we want to manually provision the project before running the code scanning we can do that. n 1)Login as administrator on…

Vb-Scripting Array Function – User friendly Tech help

Function Name:- ArraynnMeaning :- Used to creating Arrays(Returns Array type Variant)nnnSyntax:- Array(Arguments)n n Arguments are comma separated  n No Arguments are given 0 length array is created n n nExample:- n n Dim aNum n aNum = Array(“Helping”,”People”,”Learn”,”uftHelp.com”) n Msgbox aNum(0) ‘Returns Helping n Msgbox aNum(1) ‘Returs People n Msgbox aNum(2) ‘Returns Learn n Msgbox aNum(3)…

Install and configure PHP on ubuntu? – User friendly Tech help

“Without new experiences, something inside of us sleeps. The sleeper must awaken.” Frank HerbertFrank Herbert tnnStep1:- Open terminal window and type the below command(install php)nnsudo apt-get install php libapache2-mod-php php-mcrypt php-mysqln We have used extra parameters for configuring php to use apache server that we already installed and also to connect with mysql. So we…

Working with VAPI-XP in ALM ? – User friendly Tech help

Today we are going to discuss the basics of VAPI-XP and how to create our first VAPI-XP in ALM.nnMeaning:-VAPI-XP testing tool facilitate us to create new testing scripts using Microsoft VBScript, Microsoft JavaScript (JScript version), PerlScript, and PythonScript. Furthermore we can integrate these scipts into our application management process. Using VAPI-XP test scripts, we can…

Key Components of JAVA – User friendly Tech help

JDK, JRE and JVM are core concepts of Java programming language. As a novice in this language we should try to comprehend these concepts to visualize how it works logically.nnFor more updates do follow us on Facebook,Twitter or Google+nnnJava Development Kit (JDK) consists of tools needed to create the Java programs,like Java libraries, Java compiler(javac.exe),…