Working with React-Router? – User friendly Tech help

“An investment in knowledge pays the best interest.” Benjamin FranklinnnIn our previous post we started with creating our first react app and than we learned about some basic terminologies in react. Today we are going to focus on creating the router behaviour using react library.nnIncase you want to learn about filtering in react check the github code….

All about Locators in Selenium – User friendly Tech help

Locators in Selenium?nWhen we created our first IDE script, we found that Editor comes with the tabular structure with 3 columns namely Command, Target and Value.nThis structure is used by selenium core to simulate user actions on the application under test(AUT).Just a reminder of things again we have :-nnCommand:Is our action on the AUT like…

Run given process from Terminal using Robot Framework

Problem:- How to execute external files (say test.py) as process using robot framework? Solution:- Approach 1 :- Using Run Process keyword, under “Process” library Step1:- Include “Process” library in settings Step2:- Use “Run Process” keyword as below Comment Using Run Process Keyword ${result} = Run Process python -c print ‘Hello, world!’ Should Be Equal ${result.stdout}…

How to solve the issue with Resize of TextArea in IE using JQUERY? – User friendly Tech help

Requirement:- We need our TextArea should be flexible to be re-sized by user in Internet Explorer?nnSolution:-nWe followed the approach of JQuery to solve the problem.nnMethod:-nResizable nnWorking DemonCode:-nnnCSS:-n n n n n n CSS part n n n HTML:- n n n n n n HTML Code n n n JavaScript:- n n n n n n JavaScript n n…

How to get Column Address from column Name in Excel ? – User friendly Tech help

Requirement:-To find the Address of given Column in Excel. nnIn the below image we need to find the Address of “Application” column in the excel.Which is “C”.nn n n n n n Excel Data n n n nCode:- n sSheetName = “uftHelp”sColumnName = “Application”sPath = “C:TempTest.xlsx”fnExcelColAddress sSheetName,sColumnName,sPath’*******************************************Function***********************************’Function Name:- fnExcelColAddress’Function Description:- Fetch the Excel Column Address based…

How to log a Bug in ALM using OTA? – User friendly Tech help

Requirement: – Logging Bug in ALM/QC programmatically, without any manual intervention. n Solution: – We will utilize the capabilities of OTA (Open Test Architecture) of ALM to log a Bug. n Approach: – Key is “TDConnection object” which is the entry point for using OTA; with this object we can access most of the functionalities…

Setup for Robot Framework Automation – User friendly Tech help

World changes constantly..nWe change each day..nOnce U find itself U have to begin again.nnToday we are changing and learning Robot Framework and thought of sharing the same with others co-learners, please add your expertise as comments to this post. We have already shared our posts on established automation tools like UFT and Selenium.nnDo follow us…