difference between waitProperty & Checkproperty
Answers were Sorted based on User's Feedback
Answer / uday
As per the name, waitProperty waits till the condition met
or the maximum time specified.
For ex:B().p().webbutton().waitproperty "Enabled",true,30000
So here QTP waits till the button is enabled or waits for
max of 30 Secs and if the button is not enabled, then the
step fails.
Where as CheckProperty is to verity whether the value is
matched or not and returns a Boolean value
Ex:
B().p().webbutton().CheckProperty "Enabled",true,30000
Here QTP verifies whether the button is enabled or not and
waits for 30 sec and returns true if the button enable else
return false.
Thanks,
Uday
http://qtpftvideos.blogspot.com/
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / shikha
CheckProperty: Checks whether the specified object property achieves the specified value within the specified timeout.
If the expected and actual values do not match, an error is reported and the test or component status is changed to failed.
WaitProperty: will not fail your test but is use for synchroniztion
For test run synchronization, or whenever you do not want to fail the test if the expected and actual values do not match, use the WaitProperty method.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / bapi
so check property Returns Result in Results Page and Wait property never returns Only execute the step?
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / kiran patil
Boths working are different.
1) check property is checking the condition ( is it or not ).and get the result in the form of boolean value( true or false ) or. ( 0's or 1's ).
2)wait property have a limit value ( like=1 to 10 ) 10 is a wait value.
When loop is going on 1 toward 10 then ok but, when the 10 value is cross that time process is in wait condition or stop conditions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Hi Suppose u have complex Test scripts which u vl write first and which u vl execute first
Is it possible to call win runner script in qtp?
How can you connect the database with QTP?
how do you parameterize search button from the website? the page is a single winobject and i have made a virtual object button of search button but search box can't be converted into a winedit and if we try to convert it into winedit the value we enter in a searchbox appears as numbers in the script so we arent able to parameterize.help!!!
How we can test a Frame in a web page?
How did u write macros?What is the main importance of VB macros in testing environment?
By default Action1 runs first in QTP. Is it possible to start the run with Action2?
what is the difference between DATA TABLE and DATA SET?
What is the difference between the keyword view and expert view?
what to do if application have 3 "ok" button with same logical name and same properties, how qtp can identify them.
How do you compare the structure of 2 tables in database and check whether they are similar using qtp.
What are different types of frame works ?