Did u use check points during ur work experience ?
Answers were Sorted based on User's Feedback
Answer / @shok
It is not mandatory to use standard checkpoints available
with the automation tool. Most of the checkpoints for
instance Bitmap check points may fail during runtime.
Instead you can write code to validate what you intend to
test and then supply a pass/fail log entry to the test
result wingow.
EG:
check = cbool(trim(Price)=trim(Total))
If check = "True" Then
reporter.ReportEvent micpass, Total , "Calculation is
right"
else
reporter.ReportEvent micfail, Total , "Calculation is
wrong"
End If
In the example mentioned above if value of Total and Price
are same there will be a pass entry in the test result page
and if they are not the same then you will have a failed
log entry in the test results page.
This way you can code for whatever tests you want to get
validated. Correct me if i am wrong
I have never done validation of images by writing code.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / akshar jain
it is not 100% correct in our company we are using
checkpoints only to take the values from a data table by
using standard chkpoint & that too we are not recording it
| Is This Answer Correct ? | 0 Yes | 2 No |
What kind of performance is expected on the client side (e.g., how fast should pages appear, how fast should animations, applets, etc. load and run)?
How to automate a script in mainframes environment? I have the terminal emulator Add in. Describe in detail.
diff between global variables and environment variables in qtp?
In the application that I'm testing is having a WYSIWIYG editor.QTP is recording editor's body as web element. I want to add some data to this web Element at run time. The problem is that I cant find a method to add contents to this web Element. Can any one come up with an answer for this. Thankx.
What are the points to be taken into consideration while doing desktop testing?
how to make connection to a remote mysql database in qtp any one can please provid eme deatail steps.
Can any give an example(if possible templates) how to test web application using QTP. thanks in advance
What is the differnce between action & script
if we made any changes in shared object repository how it reflects of others like our team members?
What type of problems one will face with QTP , if too many browsers are opened at a time?
How we can add objects to the object repository during the running?is it possible or not?explain
In my QTP script I have a word in notepad that ends in a question mark, for example... "father?" As part of my script I want to delete the question mark. How do you delete a character in notepad?