Similar Posts
Close v/s Quit in Selenium – User friendly Tech help
Scenario: –nWe want to understand the difference between Close, Quit & Dispose commands?n Laymen terms: – n We are going for sleep inside our gorgeous house and charming room . It is really hot today but we can feel some cool breeze, so we would prefer not to close the windows of the house, but we simply need…
Apex – User friendly Tech help
CONTROL YOUR EMOTIONS TO EMPOWER YOUR BRAIN Problem:-Clients api was having redirect policy on the server but its not handled by Vlocity integration procedure(IP), thus its failing with 307 response code Solution:- Error:- 307 Temporary Redirect Inside IP create “Remote Action” to refer the Apex class and apex method, which handles the redirect 307 error….
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…
Various ways to Reverse String in UFT/QTP using Vbscripting – User friendly Tech help
Scenario:- We need to Reverse a String, without using Vb-scripting Inbuilt Function(strReverse)n Solution1:- We will use “Mid” function for reversing the Input String n Example Code:- n sRev = “UFTHELP, Ur First Testing Help”Msgbox fnReverse(sRev)Public Function fnReverse(sRev) for i = 1 to len(sRev) sNew = mid(sRev,i,1) &sNew nextfnReverse = sNewEnd Function n nn n Solution…
Reporting in TestNG – User friendly Tech help
Why we need Reporting?nWhen we are using Selenium or any other automation tool (say UFT), we are replicating user interactions on the AUT(Application under Test).But our aim is not only to test AUT, but to comprehend the result of test execution, points of failure(Bug), and reason of the failure, and reporting it to development team…
Test Directory structure of UFT files. – User friendly Tech help
Scenario: – We have created new Test with the name “blog” and let us observe the folder structure created by UFT. On creating of new GUI Test in UFT, by default two actions (Action0, Action1) is created.n n Action1:– It contains details about our first Action and is visible in “Editor” (Keyword view of QTP)…