Read the rest in Testeverythingqtp Article….
Posted by rajivkumarnandvani on January 11, 2012
Read the rest in Testeverythingqtp Article….
Posted in QTP | Tagged: performance testing, test plan, testing tool, threads, tool solution, variables | Leave a Comment »
Posted by rajivkumarnandvani on December 1, 2011
You can get the most benefit out of your automated testing efforts by automating:…..
Read the rest in Testeverythingqtp Article….
Posted in QTP | Leave a Comment »
Posted by rajivkumarnandvani on September 18, 2011
Posted in QTP | Leave a Comment »
Posted by rajivkumarnandvani on July 28, 2011
The Device Replay feature is used to perform mouse and keyboard actions against screen coordinates that are provided. The Device Replay functions are not automatically recorded, but must be programmed manually in the Expert View.
Posted in QTP | 1 Comment »
Posted by rajivkumarnandvani on July 23, 2011
Hi All,
I found that most of time while working with WEBTABLE we need to the select the row based on some criteria by clicking checkbox or radiobutton.For that first we have to find the row which we have to select based on value of that row like text/link inside the row.
Here I am giving an example how to select a row in Webtable by finding the text. Logic I am using here is first i will find the row number from webtable where my searching text is present using GetRowWithCellText method then I will provide the column name/index of webtable where checkbox is present.
In below mentioned example I will select the row where Confirmation Number is “15204“
Let’s see
| Select | Date | ConfirmationNumber | User Name | Organization Name |
|---|---|---|---|---|
|
17-SEP-2008
|
13761
|
SMITH’S LP SUPPLY CO.
|
||
|
24-OCT-2008
|
13808
|
Micro Motion test1
|
||
|
30-OCT-2008
|
13874
|
EMERSON PROCESS MANAGEMENT ASIA PACIFIC PTE LTD
|
||
|
13-JUN-2009
|
15058
|
Spartan Controls Ltd.
|
||
|
08-AUG-2009
|
15204
|
Emerson Process Management
|
Posted in QTP, WEB | Tagged: CheckBox, GetRowWithCellText, WebTable | 5 Comments »
Posted by rajivkumarnandvani on May 25, 2011
Hi All,
Someone asked me how to highlight the text on page using the QTP. So here I have created a function that will find the text on page and highlight it if finds else not.
Posted in QTP, WEB | Leave a Comment »
Posted by rajivkumarnandvani on May 11, 2011
Hi ALL,
I have started my new blog about QTP on google blog spot.
here is the link
Posted in FAQ QTP | Leave a Comment »
Posted by rajivkumarnandvani on April 15, 2011
This section includes the following:
This section includes information that is important for you to know before you install QuickTest.
Workaround: Disable the antivirus application during the QuickTest installation process.
Workaround: Repair the installation:
In <QuickTest installation folder>\GlobalAssemblyCache\Net4, execute the following commands:
Use the information in this section as a supplement to the product documentation.
Additional troubleshooting information, guidelines, and feature-specific limitations are described in the relevant locations of the installation and product documentation. Make sure you are aware of those issues when working with the relevant features.
This section includes the following:
Workaround: If desired, set the LSFORCEHOST variable manually, as described in the HP Functional Testing Concurrent License Server Installation Guide.
Workaround: To ensure that a specific server will be used, specify an LSFORCEHOST environment variable instead.
If you work with QuickTest on a Windows 7 operating system with User Account Control (UAC) turned on, and you open a test from a protected location (such as Program Files), it is opened in read-only mode and a message is displayed that you do not have permissions to open it in read-write mode.
Workaround: If you need to have full access to the called tests as well as the main test that you save using the Save Test with Resources option, then you must manually save all required tests locally and then manually edit all references to the relevant actions from the main test to the actions it calls.
Workaround: Perform an operation (for example, use the Object Spy) with the first tab opened/refreshed before opening/refreshing the second one.
To search for information from all the documents in the QuickTest Documentation Library, use the Search tab.
For details, see http://support.microsoft.com/kb/902225
If you install a QuickTest User Interface Pack after running QuickTest, the following items may remain in English after installing the User Interface Pack:
Workaround: Close QuickTest and delete the folder: %APPDATA%\HP\QuickTest Professional
(For example, C:\Documents and Settings\<username>\Application Data\HP\QuickTest Professional).
Workaround: Modify the sLanguage registry key value as follows:
Posted in FAQ QTP, QTP | 4 Comments »
Posted by rajivkumarnandvani on April 11, 2011
Additionally, the Object Spy has a new, cleaner look and feel:
Posted in QTP | Tagged: Object Spy, QTP 11 | Leave a Comment »
Posted by rajivkumarnandvani on March 25, 2011
‘ REM Adding Column name in Run time
DataTable.GetSheet(“MySheet”).AddParameter “bname”,” “
objCon.Open”Provider=Microsoft.Jet.Oledb.4.0;Data Source=D:\NewDB.mdb”
REM Creating Record set for DataSet
Set objRs=CreateObject(“adodb.recordset”)
REM Opening RecodSet form DataBase( storing the values in recordsetb )
objRs.open”select * from Emp”,objCon
REM Loop for Getting DataBase Column name
For intCount = 1 to objRs.Fields.Count-1
i = 1
REM column name in run time data sheet using add parameter method
DataTable.GetSheet(“MySheet”).AddParameter objRs.Fields(intCount).Name,” “
Posted in QTP | Leave a Comment »