Similar Posts
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…
How to Search a Numeric value inside a String ? – User friendly Tech help
Hello Automation lovers, during these sweltering summers it is really arduous to sharensomething with the community. From a long time, I was thinking to share some logic for nsearching numbers in a Text.nnBy the grace of GOD, today is lucky Day 🙂n n Scenario: – How we can search a Numeric Value inside a given Text/String/File?nnSolution:-…
How to fix error and get back to https with ssl? – User friendly Tech help
nOur attitude toward life determines life’s attitude towards us…n Error:-n nn Solution:-nStep1:-nTemporarily remove secure connection: n gem sources -r https://rubygems.org/ n nnStep2:-nAdd insecure connectionnngem sources -a http://rubygems.org/nn n Step3:-nInstall compass gemnnnStep4:-nAfter installing compass do vice versa:na) gem sources -r http://rubygems.org/ – to remove insecure connectionnnb) gem sources -a https://rubygems.org/ – to add secure connectionnLearn More…
Interview Question on Arrays in UFT – User friendly Tech help
Please find some of the Questions related to Array’s in vbscripting :-nnn1. How many types of Array are there?nn2. Can we redefine the index of an Array?nn3. What is the difference between an Array and Dictionary Object?nn4. How can we get lower index and upper index of an Array?nn5. If Array is of index 10,…
Working with Remote Agent in UFT – User friendly Tech help
Let us comprehend the role and settings of a “Remote Agent” in UFT/QTP. n Meaning:- n It is an inbuilt tool inside HPUFT, which comes into picture when we run a test from ALM. n UFT Remote Agent opens on the UFT computer where the test runs. n The UFT Remote Agent determines how UFT…
Run given process from Terminal using Robot Framework – User friendly Tech help
Problem:- How to execute external files (say test.py) as process using robot framework?nnSolution:-nnApproach 1 :- Using Run Process keyword, under “Process” librarynnStep1:- Include “Process” library in settingsnnnStep2:- Use “Run Process” keyword as belown Comment Using Run Process Keyword${result} = Run Process python -c print ‘Hello, world!’Should Be Equal ${result.stdout} Hello, world!Comment Using Run Keyword${output} Run…