Implement Robot Framework using RIDE (Part-1) – User friendly Tech help

Starting with installation prerequisite of robotframework(RF), we learned how to create our first test case using RF. Today we would enhance the same test case and implement it in RIDE. (IDE for robot framework). n Requirement:-Creating our first test case in RIDE? n nDo follow us on  Fb,G+,Twitter, it encourages us to learn and share…

Addin for Multibrowser support in QTP – User friendly Tech help

Automation Samurai, company came with new version of QTP addin which supports running of QTP scripts on latest versions of browser platform like:- n n Safari n Chrome  n Firefox n HTMLUnit n Opera n n It also supports mobile testing of  iPhone, iPad and Android (support for emulators and actual devices). n For more…

Example Scenarios of GetRoProperty in UFT – User friendly Tech help

1. How to fetch the title of opened browser using UFT? n Variable DeclarationDim sTitle , objDesc ,objBrowser’Creating Description ObjectSet objDesc = Description.Create’Description object is pointing to BrowserobjDesc(“micclass”).value = “Browser”‘Fetching all the opened BrowserSet objBrowser = Desktop.ChildObjects(objDesc)’Taking the tile of the opened browser using GetROPropertyFor iCounter = 0 to objBrowser.Count -1 MsgBox “Title of opened…

Running Selenium test case in Google Chrome? – User friendly Tech help

We have already learned to execute selenium test case in Firefox browser . Now we thought of running the same test on “Google Chrome”.nnRequirement:- Executing selenium webdriver test case in Google chrome for the first time.nnSolution:-nWe simply tried to change the previous code and passed the reference of “chromedriver”.nnBefore :-n  WebDriver driver = new FirefoxDriver();nAfter:-n …

Getting started with Sass (Installation) – User friendly Tech help

Requirement:-nnInstalling Sass on Windows/Linux/Mac platform.nnWhat is Sass?nSass(Syntactically Awesome StyleSheets) is an extension of CSS that adds power and elegance to the basic language. It allows you to use variables, nested rules, mixins, inline imports, and more, all with fully CSS-compatible syntax and adds features to combat shortcomings. Sass helps keep large stylesheets well-organized, and get…

How to download a file from ALM in UFT using OTA? – User friendly Tech help

Requirement:-nHow we can download a give file from ALM (“Test Resources” Tab) using OTA?nn n n n n n Test Resources Tab n n n nnSolution:-nWe will utilize “QCUtil” , a utility object available in UFT, to leverage the methods and properties of OTA(Open Test Architecture) for downloading the user given file.nnLogic:-nOur approach is to…

Using Prettier with Apex Salesforce in VSCode – User friendly Tech help

Prerequisite:- VSCode is fully configured to work with Salesforce n n Select the existing Salesforce Project. At the root level run the below command in the Terminaln npm init //this will create package.json file to track npm dependencies n Run the below code to install the prettier apex npm plugin, as a local dependency to…