Exforsys

Online Training

Urgent need of QTP tutorial

This is a discussion on Urgent need of QTP tutorial within the Testing Tutorials forums, part of the Articles and Tutorials category; I need QTP8.2 tutorial very urgently for testing. Friends if you find QTP tutorial, please post it immediately. Thanks, ...


Go Back   Exforsys > Articles and Tutorials > Testing Tutorials

Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

 

LinkBack Thread Tools
  #1 (permalink)  
Old 06-09-2006, 11:07 AM
Junior Member
 
Join Date: Jun 2006
Posts: 1
anil.challa is on a distinguished road
Smile Urgent need of QTP tutorial

I need QTP8.2 tutorial very urgently for testing. Friends if you find QTP tutorial, please post it immediately.

Thanks,
Anil Challa
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 06-09-2006, 02:00 PM
Senior Member
 
Join Date: Nov 2004
Posts: 177
sanereddy is an unknown quantity at this point
You can get evaluation copy comes with full documentation... you will just have to register for free account...


http://www.exforsys.com/content/view/1374/340/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 11-28-2006, 10:54 AM
Junior Member
 
Join Date: Nov 2006
Posts: 2
v_zakhmi is on a distinguished road
I need QTP8.2 tutorial very urgently for testing. Friends if you find QTP tutorial, please post it immediately. my email address is v_zakhmi@yahoo.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 11-30-2006, 06:55 PM
Senior Member
 
Join Date: Nov 2004
Posts: 177
sanereddy is an unknown quantity at this point
Quote:
Originally Posted by v_zakhmi View Post
I need QTP8.2 tutorial very urgently for testing. Friends if you find QTP tutorial, please post it immediately. my email address is v_zakhmi@yahoo.com

please read the article .... it's not legal to distribute any docuemnts...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 12-06-2006, 12:31 PM
Junior Member
 
Join Date: Dec 2006
Posts: 1
pradeep_parsi is on a distinguished road
Hi Frendz,
For the past 2 days, I have been searching for the Licence Code to install QTP 8.0..plz let me know if any body has the same...It's very urgent...

Awting for immediate response...

Thanking you all
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-14-2007, 05:48 AM
kalyansantosh's Avatar
Member
 
Join Date: Feb 2007
Location: Hyderabad
Posts: 91
kalyansantosh is on a distinguished road
Send a message via Yahoo to kalyansantosh
Q. What are test objects?
Test objects are objects created and maintained by QTP in its object repository. Each test object
has a name and a set of properties to uniquely identify the actual object in the application.
Q. how does QTP identifies the objects during the script run?
During script run QuickTest searches for a run-time object that has the similar description of the
test object in the object repository.
Q. How can i check the properties of an object in an application without using check
points? For Example how will you check whether a button is enabled?
Answer: GetROProperty method is used to retrieve the properties of the object in an application.
It is very useful method and can be used to retrieve almost any of the property that can be seen
while spying the object with object spy.
For Example
‘To get whether button is enabled or not.
Val = Browser("QA Friends").Page("QA Friends").WebButton("Login").GetROProperty("disabled")
‘To get whether a checkbox is on or off.
Val = rowser("QA Friends").Page("QA Friends").WebCheckBox("Test").GetROProperty("Value")
Q. How can I modify the properties values of test objects in Object Repository during run
time?
A. You can use SetTOProperty method of test object.
Object(description).SetTOProperty Property, Value
The values of test object properties are used to identify the objects. Sometimes the properties of
the object in the application change dynamically. For example text of a link in a webpage is the
username used to login to that page.
Text property is used by test object to identify the link. So in order to identify the actual object we
can manipulate the value of “text” property of link using SetTOProperty.
Q. How do you synchronize your scripts in QTP?
A. For waiting until navigation of web page completes we can use Sync method.
For waiting until an object appears we can use Exist method.
For waiting until a property of object changes we can use WaitProperty method.
You can set browser navigation timeout in:
Click Test > Settings menu
Select web tab in Test Settings window.
Enter the timeout in Browser Navigation Timeout text box.
You can set global object sychrozization timeout in:
Click Test > Settings menu
Select Run tab in Test Settings window.
Enter the timeout in Object Synchronization Timeout text box.
Q Where can you write user defined functions that are accessible by all scripts?
A. We can write user defined function in .vbs file. This file can be loaded by adding the file as
follows:
Click Test > Settings menu
Select Resources tab in Test Settings window and add the file.
Alternatively you can also load the file through script using
ExecuteFile “absolute or relative path of file”
For Example: ExecuteFile “C:\Test.vbs”
Q What are regular expressions?
A. Regular expressions used for identifying objects and text strings with varying values. You can
use regular expressions for defining the property values of an object, creating checkpoints with
varying values etc.
Example:
For example if the caption on the button in an application changes dynamically and can be
anything which starts with “Hello” (It can be Hello XYZ, Hello AB13 and so on)
You can go object repository and change the value of name property of the button object to
“Hello.*”
Here “.” means any single character and “ * ” means 0 or more occurances of preceding
character. So .* means 0 or more occurances of any character.
There are many other regular expression characters:
For Example: Regular expression test[0-9] matches test0, test1, test2…… to test9.
Regular expression abc[789] matches abc7, abc8, abc9
Q. Different ways to parameterize tests?
A. Test, action or component parameters – for using values from other action in your
test.
Data Table parameters – for creating data driven test based on values in data table.
Environment variable parameters – For using values of environment variable.
Random number parameters – For using random numbers as values in our test or
component.
Q. What can you do if values of object properties in an application are changing
constantly?
A. We can try using alternatives like regular expressions, Changing description of test
objects in object repository during run time, using descriptive programming and so on.
Q. What can you do if objects are not identified by QTP?
A. 1) For standard windows environment you can try object mapping user defined
classes to standard classes.
2)You can find whether any addins are available for given environment.
3) check if any other reliable alternativies are available like using keyboard shortcuts,
using automation object model of application if available and so on.
Q. What is descriptive programming?
A. Descriptive programming allows you to work with objects that are not stored in object
repository.
two types of programmatic descriptions.
1) listing the set of properties and values that describe the object directly in a test
statement.
2) Add collection of properties and values to a Description object, and then enter the
Description object name in the statement.
Q. How will you access database from QTP?
A. You can use ActiveX Data Object for accessing the content of database. You can
create connection object, recordset object and then execute query. And access the values
of query in recordset.
Example
Set objConn= CreateObject("ADODB.connection")
Set objRecSet = CreateObject("ADODB.recordset")
objConn.open strConString 'strConString is database connection string.
objRecSet.open strQuery,objConn 'strQuery is SQL query to execute.
__________________
Kalyansantosh
Sr QA
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-15-2007, 07:26 PM
Junior Member
 
Join Date: Aug 2004
Posts: 5
kishhari
Posted the tutorial ...go through
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 07-21-2007, 08:45 AM
Junior Member
 
Join Date: Jul 2007
Posts: 1
lokaraja is on a distinguished road
need QTP8.2 tutorial very urgently for testing. Friends if you find QTP tutorial, please post it immediately.

Thanks & regards
Lokaraja.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 07-25-2007, 06:42 AM
Junior Member
 
Join Date: Jun 2007
Posts: 12
pranjuls is on a distinguished road
can you available your id to me so that I can fwd it to u...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 08-10-2007, 07:16 PM
Junior Member
 
Join Date: Aug 2007
Posts: 2
satya.cs is on a distinguished road
hi

I need to know how to use recovery scenario in QTP..plz post the step by step procedure...that would b helpful for me..

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads

Thread Thread Starter Forum Replies Last Post
Free J2EE Tutorials cybot Java Tutorials 10 11-10-2006 03:38 AM
Urgent need of Quick Test Pro[QTP] Tutorial balaji_goli Testing Tutorials 23 09-10-2006 10:56 PM
CSS Collection cybot Web 2.0 0 04-30-2006 01:30 PM
Collection of XML tutorials and Tools pit cybot XML 1 04-28-2006 03:18 AM
plz help ...its urgent luvureet Interview Questions 1 06-15-2005 09:42 AM


All times are GMT -4. The time now is 04:18 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0
Copyright 2004 - 2007 Exforsys Inc. All rights reserved.