what is difference between wait and synchronization point.
Answers were Sorted based on User's Feedback
Answer / s.gayathri
wait:in wait point,though the job is completed less than
the specified time,it will wait for the specified time to
be elapsed and then only we will have the result summary.
synchronization:but in this case once the job has been
completed,we can immediately get the result sheet.it wont
wait for the specified time to be elapsed.
example:
suppose we have one job which takes 5secs to complete.
by using this
wait(10)->though the job is completed within 3secs,it will
wait til 10secs and then we will havethe result sheet
by using this synchronization time as the same 10secs,once
the job is completed within 3secs,it will not wait for the
remaining 7secs,after 3secs it will immediately give the
result sheet
| Is This Answer Correct ? | 28 Yes | 0 No |
Answer / praveen yarlagadda
what ever you said is absolutely right
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / deeps
when you use wait command, the tool waits for the given
time and moves on even if the object has not appeared.
Whereas synchronization point waits until it sees the
object.
object may appear sooner or later than the given wait time.
If the object appears sooner than it has wait until it
reaches the given time or if the object appears later than
the test fails. So it is always a better bet to use
synchronisation point.
| Is This Answer Correct ? | 5 Yes | 3 No |
What is action?
what is the smart identification techniqu?what r the different mechanisums used in it?
When to use descriptive programming?
With help of object repository,we can able to write the descriptive program manually?
Explain the concept of object repository & how QTP recognises objects?
what type of framework u r using in ur organization
Explain the Load testing process?
What are the three challenges U faced during automation testing of your application.
what is the difference between Reusable action and external action?
Got job with 3 years fake Experience
Can any body tell me how can I choose the share object repository and per action object repository mode. Please give me with steps.
Hi friend I have query regarding QTP datatable. I want to insert data in datatable during runtime. suppose i wrote datatble.value(1) = "Test data" so when i run the script it says column(1) doesn't exist. Then i write something in column A1 manualy and run the script again. Now it works fine. Pls clarify how i can put value in blank cell of datatable.