Similar Posts
Variable type in UFT – User friendly Tech help
nHow to get Subtype of variable?nnIt is very easy, we need to use the function provided in vbscripting i.e. VartypenSyntax:-nVartype(variableName)nVartype returns values in the form shown below:- n Example:-nWe need Vartype of a string variable,n Var1 = “UFThelp”nnMsgbox (Vartype(Var1)) ‘8 will be returnedn nn DataType MatteoWas this article helpful?YesNo
React – User friendly Tech help
How to create Pure Component in React? A functional component that we are modifying as Pure component:- import React from ‘react’; import Tabs from ‘../Tabs’; import ‘./RightPanel.scss’; const RightPanel = () => ( You are on Index.jsx file You are on Panel.jsx file […] n What is React Ref? Its another way of communicating with…
Javascript Interview Questions(Part-4) – User friendly Tech help
JavaScript Coding interview questions with solutions:-nnQuestion1:-n You would like to set a password for a bank account. However, there are three restrictions on the format of the password:it has to contain only alphanumerical characters (a−z, A−Z, 0−9);there should be an even number of letters;there should be an odd number of digits.You are given a string…
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…
Working with Files and Folders in UFT – User friendly Tech help
It has been a while that we tend to post something relevant to operating with files and folders. Fortuitously we stumbled on a task of looking out a specific kind of files in our system drives. n nSo we leveraged that opportunity to share the simplified ideation for the same. As we all recognize that…
Basic Linux commands for beginners – User friendly Tech help
Scenario:- What are some of basic commands one should know when moving from windows enviornment to linux(say ubuntu)? n Solution:- Its a learning experience when moving from mouse click(windows) to terminal evniornment(ubuntu) n We are trying to cover some the very basic commands, please feel free to add more from experience as comments to this…