Skip to main content

Error Handling in QTP

As we have 3 types of error handling methods in pure VB or VBA language, we can easily handle our errors like Try/Catch functionality. They are,
On Error Resume Next
On Error GoTo 0
On Error GoTo <LABEL>
But VBScript supports only 2. They are

On Error Resume Next
On Error GoTo 0
So here we are going to talk about these  2 handlers.


1. On Error Resume Next
This enables the vb error handler and whenever dynamic run time error occurs, it will collect the error information and continue with the next immediate statement. This won't stop the script execution when error occurs.
  1. On Error Resume Next
  2. Dim a
  3. a = 5 / 0   'this will give run time error - Divide by zero error
  4. msgbox "Script not stopped."
  5. msgbox Err.Description
So here 2 msgbox lines got executed. At the same time we are able to get the error information like I did in line 5. So you can check the error numbers and you can control your scripts in better way like,
  1. On Error Resume Next
  2. Dim a
  3. a = 5 / 0   'this will give run time error - Divide by zero error
  4. If Err Then
  5.     msgbox "Error occurs: " + Err.Number + "; " + Err.Message + "; " + Err.Description
  6. End If
Here is the list of Error codes
http://www.csidata.com/custserv/onlinehelp/vbsdocs/vbs241.htm
Also we will get negative error numbers also.


2. On Error GoTo 0
This is the default handler in VB. This will disables the handler and collects the error information and throw the error in msgbox. Mostly no one will use this.


Then, You can raise your custom error like,
  1. On Error Resume Next
  2. Err.Clear  'Use this to clear previously stored error info
  3. Dim a
  4. a = 5 / 0   'this will give run time error - Divide by zero error
  5. If Err.Number <> 0 Then
  6.   'Err.Raise code, message, description
  7.  Err.Raise 100"Please change the value""Division by Zero error occurs"
  8. End If
Don't forget to put Err.Clear as your error object may contain previously stored error info.

Comments

Popular posts from this blog

Some good Resources / Blogs / Sites for Selenium Users

Here I have listed out some good blogs and sites by extensive selenium automation users. Hope these will help you a lot. http://automationtricks.blogspot.com  - by NirajKumar http://www.theautomatedtester.co.uk/ http://testerinyou.blogspot.com   - by Naga/Mathu http://seleniumready.blogspot.com  - by Farheen Khan http://seleniumdeal.blogspot.com/  - Amit Vibhuti http://seleniumexamples.com/blog Sauce Labs and BrowserMob are companies doing cloud and extensive selenium automation services, products, etc http://saucelabs.com/blog http://blog.browsermob.com http://testingbot.com/ Cedric Beust -  creator of the TestNG Java testing framework. http://beust.com/weblog/ http://blog.reallysimplethoughts.com/  - by Samit Badle, Created many Selenium IDE Plug-Ins Available Colud Testing: 1. SauceLabs 2. Soasta 3. BrowserMob 4. CloudTesting.com  etc. Selenium Testing Products: 1. Twist by ThoughtWorks 2.  TestMaker by  PushToTest 3. Element34 company providi

UFT - Take full page screenshot by scrolling the page

'######################################################################################## 'This is navigate through the full page and taking individual screenshot of visible area '######################################################################################## Function TakeScreenshot Dim intScrolls, intScroll, strScrollPos Set pgApp = Browser ( " " ) .Page ( " " ) intScrolls = Round ( pgApp . RunScript ( " document.documentElement.scrollHeight / (screen.height) " ) , 2 ) If intScrolls < 1 Then intScrolls = - 1 pgApp . RunScript " window.scrollTo(0, 0); " Wait 1 Browser ( " " ) .CaptureBitmap " C:\screenshot0.png " , True For intScroll = 0 To intScrolls If Environment . Value ( " Browser " ) = " CHROME " Then strScrollPos = " scrollY " Else strScrollPos = " document.documentElement.scrollTop " End If If p

Change IE Browser ZOOM settings

Lot of UI automation testers could have faced this problem as we could change the zoom settings while operating manually for our convenience and forgot to reset to 100%. But our QTP and some other related tools would operate the browser perfectly if browser zoom is 100%. So wee need to change the zoom before start to run the scripts. Its better to have a code snippet in our framework to change this zoom setting right? Here we go... 1. We can simply change the Registry values before Invoking IE Function  ChangeRegistry   Dim  objShell   Set  objShell =  CreateObject ( "WScript.Shell" )  objShell.RegWrite  "HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Zoom\ZoomFactor" ,  "100000" ,  "REG_DWORD"   Set  objShell =  Nothing End   Function This option is very useful. But in real time, lot of customers could have restricted write access to windows registry. So we can try other options. 2. Use IE COM object and Change