Skip to main content

QTP Glitches So Far...

Well, I have started work on QTP after having worked on couple of functional test automation tools like – Selenium and Test Complete.
My first impression with QTP has not been very positive; herein I have listed few glitches I experienced so (I can only hope this list not overgrowing with time)
  • No Refactor of code – so if u modify a function name in one place it has to be updated manually in all function calls
  • “General Run Error” – try to check a check box which is disabled and you receive “General Run Error”! Can’t it say object is disable
There have been other mysteriously intermittent instances of “General Run Error” about whom I am still groping in dark
  • If used ExecuteFile to get function definition in Action then there is no way to jump to function definition from action. Function has to be opened manually. (I don’t associate function library as it is going to hardcode path to function)
  • While running QTP tests on a System it can not be used for any other task, QTP keeps bringing browser to top on which tests are executed
  • QTP on locked system, File Upload just does not work on locked system
  • Keep shared repo opened while executing test and be ready for unknown errors
  • Unable to test API on fly (It is Test Complete feature I love most), so if you want to check Web Table data – GetCellData(row, column)
Then you should execute it in test and there is no way to tests it from Object Spy itself
  • Some time have static screen while executing test and I keep waiting for next action, good if there were Test Complete sort of display during test execution
SO FAR………….
THanks,
Tarun K

Comments

  1. I have been sitting next to Tarun and watching him carefully document all the shortcomings in QTP. In fact when our manager walked by and saw his whiteboard completely covered with bright red comments he turned and took a second look.. though that may be just thanks to his handwriting! Anyway I can attest that everything written in this article is the result of careful analysis and extensive usage of the tool :)

    ReplyDelete
  2. That's a short list... :)
    I have many many more, but comparisons of QTP to a standard IDE aside there are many features that could be improved in QTPs UI and capability.
    You should step over to SQA Forums or HPs own forums where you can make an actual difference. This site will not instigate change I am sorry to say. Raise your list as a contribution list that everyone can list their grievances with QTP so maybe HP will start to take notice and provide us with some new millennium solutions instead of last century.
    SQA Forums is regularly perused by HP ;)

    ReplyDelete

Post a Comment

No spam only genuine comments :)

Popular posts from this blog

Appium and android mobile app automation

Next appium and Android mobile app automation video tutoria l is live. If you are new to appium then please check - appium-tutorial This video tutorial covers - Start vysor (Just for this session and not mobile automation :)) Start appium and start appium inspector Desired Capabilities platformName - Android deviceName - L2N0219828001013 (as seen on "adb devices") Saved Capability Sets Start Session Scan app elements using appium inspector Get appPackage and appActivity using "APK info" app Install "APK info" app and open app whose appPackage and appActivity are required i.e. calculator Check top section of app icon com.android.calculator2 is app package com.android.calculator2.Calculator is app activity testng.xml file settings for running Android app tests Test details com.seleniumtests.tests.mobile.AndroidAppTest and CalculatorScreen class View beautiful STF test report  

Return only first or last element from webelements collection

Note: If you are new to java and selenium then start with selenium java training videos .     We often come across situation when there are multiple elements on a page and we probably like to exercise only a few of them using selenium webdriver. May be just first and last element. For example on a search result page we may like to click on only first and last link and not all. This is when Iterables API comes handy. (By the way I am assuming that you have already completed watching selenium training videos :)). Once we have collection of web element then we can use Iterables to get only first or last element as following - Consider that we fetch collection of element as - List< WebElement > webElements = getDriver().findElements(By. id ( "htmlID" ));   Now we can get the first web element from this collection as -  WebElement firstElement = Iterables. getFirst (webElements,  getDriver().findElement(By. id ( "defaultElement" )));   Herein second

Using chrome console to test xPath and css selectors

Note: If you are new to java and selenium then start with selenium java training videos .       Since the advent of selenium there have been many plugin to test xPath / css selectors but you don’t need any of them if you have chrome browser. Using Chrome console you can test both xPath and css selectors. Launch website to be tested in chrome browser and hit F-12 and you would see chrome console opened in lower pane of application - Hit escape key and console would open another pane to write element locators - And now you can start writing xPath or css selectors in chrome console and test them - The syntax for writing css id - $$(“ ”) And hit the enter key. If your expression is right then html snippet of the application element corresponding to the css selector would be displayed - If you mouse over the html snippet in chrome console then it would highlight the corresponding element in application - If you want to clean console of previously wri