<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[QTP Forums - All Forums]]></title>
		<link>http://www.learnqtp.com/forums/</link>
		<description><![CDATA[QTP Forums - http://www.learnqtp.com/forums]]></description>
		<pubDate>Sat, 04 Feb 2012 18:22:15 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[QTP not recognising macro]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-not-recognising-macro</link>
			<pubDate>Sat, 04 Feb 2012 06:44:45 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-not-recognising-macro</guid>
			<description><![CDATA[Hi, I want to automate a macro excel<br />
But QTP could not record a single operation done on Macro.<br />
Give solution for same<br />
<br />
Activities to be performed on Macro excel:<br />
Selecting a drop down<br />
Clicking a button<br />
fetching data<br />
etc etc<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hi, I want to automate a macro excel<br />
But QTP could not record a single operation done on Macro.<br />
Give solution for same<br />
<br />
Activities to be performed on Macro excel:<br />
Selecting a drop down<br />
Clicking a button<br />
fetching data<br />
etc etc<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Return the last number of “Test”]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Return-the-last-number-of-%E2%80%9CTest%E2%80%9D</link>
			<pubDate>Fri, 03 Feb 2012 21:39:13 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Return-the-last-number-of-%E2%80%9CTest%E2%80%9D</guid>
			<description><![CDATA[How can I use RegEx to just return the last number of “Test”?<br />
<br />
Test = "NestedGrid1" or Test = "NestedGrid15"<br />
<br />
To return 1 or 15?<br />
<br />
I did figure this out:<br />
xNGNum = replace(Test, "NestedGrid","")<br />
<br />
but i am curious if there is a better way.<br />
<br />
thx]]></description>
			<content:encoded><![CDATA[How can I use RegEx to just return the last number of “Test”?<br />
<br />
Test = "NestedGrid1" or Test = "NestedGrid15"<br />
<br />
To return 1 or 15?<br />
<br />
I did figure this out:<br />
xNGNum = replace(Test, "NestedGrid","")<br />
<br />
but i am curious if there is a better way.<br />
<br />
thx]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Way to check if a table is visible]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Way-to-check-if-a-table-is-visible</link>
			<pubDate>Fri, 03 Feb 2012 18:15:06 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Way-to-check-if-a-table-is-visible</guid>
			<description><![CDATA[I need a better way to check if a table is visible or not. Currently, if the WebTable is not visible, I open it. I determine which WebTable is needed by finding the "html id" but so far, my code always triggers.<br />
<br />
My code is such:<br />
<br />
NGNum = Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebTable("innertext:=" &amp; GroupName &amp;".*", "visible:=True").WebTable("innertext:=" &amp; "Document Type.*", "visible:=True").GetROProperty("html id")<br />
<br />
If Not Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebTable("innertext:=" &amp; GroupName &amp;".*").WebTable("innertext:=" &amp; "Document Type.*", "visible:=True", "html id:=" &amp; NGNum ).Exist(0) Then<br />
				Browser("Wisdom").Page("Wisdom IA").Frame("parent").Link("name:=" &amp; GroupName, "visible:=True").Click<br />
<br />
Can anyone give me a better idea?<br />
<br />
thx ;-)]]></description>
			<content:encoded><![CDATA[I need a better way to check if a table is visible or not. Currently, if the WebTable is not visible, I open it. I determine which WebTable is needed by finding the "html id" but so far, my code always triggers.<br />
<br />
My code is such:<br />
<br />
NGNum = Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebTable("innertext:=" &amp; GroupName &amp;".*", "visible:=True").WebTable("innertext:=" &amp; "Document Type.*", "visible:=True").GetROProperty("html id")<br />
<br />
If Not Browser("Wisdom").Page("Wisdom IA").Frame("parent").WebTable("innertext:=" &amp; GroupName &amp;".*").WebTable("innertext:=" &amp; "Document Type.*", "visible:=True", "html id:=" &amp; NGNum ).Exist(0) Then<br />
				Browser("Wisdom").Page("Wisdom IA").Frame("parent").Link("name:=" &amp; GroupName, "visible:=True").Click<br />
<br />
Can anyone give me a better idea?<br />
<br />
thx ;-)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[GetROProperty and GetVisibleText in QTP]]></title>
			<link>http://www.learnqtp.com/forums/Thread-GetROProperty-and-GetVisibleText-in-QTP</link>
			<pubDate>Fri, 03 Feb 2012 17:21:59 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-GetROProperty-and-GetVisibleText-in-QTP</guid>
			<description><![CDATA[Hi All,<br />
<br />
I'm facing a problem in QTP using GetROProperty for extracting text from Button and Static field in Windows Application.<br />
<br />
Problem Faced:<br />
String which is expected to be displayed in Button and static field is not displayed properly(it is having string cut) in UI. But on using GetROProperty it returns the expected text eventhough string cut is present in UI.<br />
Other alternative is GetVisibleText.But when GetVisibleText is used also some portion of the text which is not displayed in UI is returned.Also QTP help file itself mentions not to use GetVisibleText as it return value may differ across platforms.<br />
<br />
Can anyone help in sorting this out?Any other alternative?<br />
<br />
Thanks in Advance.]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
I'm facing a problem in QTP using GetROProperty for extracting text from Button and Static field in Windows Application.<br />
<br />
Problem Faced:<br />
String which is expected to be displayed in Button and static field is not displayed properly(it is having string cut) in UI. But on using GetROProperty it returns the expected text eventhough string cut is present in UI.<br />
Other alternative is GetVisibleText.But when GetVisibleText is used also some portion of the text which is not displayed in UI is returned.Also QTP help file itself mentions not to use GetVisibleText as it return value may differ across platforms.<br />
<br />
Can anyone help in sorting this out?Any other alternative?<br />
<br />
Thanks in Advance.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bad Length Error on Setting values in SAPGUIEdit]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Bad-Length-Error-on-Setting-values-in-SAPGUIEdit</link>
			<pubDate>Fri, 03 Feb 2012 12:58:01 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Bad-Length-Error-on-Setting-values-in-SAPGUIEdit</guid>
			<description><![CDATA[Hi All,<br />
<br />
This is very common issue with SAP.<br />
<br />
There are few fields in SAP which throws 'Bad Length' error on setting values into it during run time(using Script). However you will be able to set the values manually.<br />
<br />
The problem is with the length assigned to such field during run session. The field length is usually smaller ,say 4, at runtime. So if you are trying to set a value of length more than 4, you will get this error.<br />
<br />
I figured out a way of doing with using the below undocumented method.<br />
<br />
SAPGuiSession("Session").SAPGuiWindow("Display Order").SAPGuiEdit("&lt;FieldName&gt;").Object.text="&lt;Your Text&gt;"<br />
<br />
The above code worked fine for me. <br />
<br />
Hope this will help few of you. <img src="http://www.learnqtp.com/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Regards,<br />
Ankesh]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
This is very common issue with SAP.<br />
<br />
There are few fields in SAP which throws 'Bad Length' error on setting values into it during run time(using Script). However you will be able to set the values manually.<br />
<br />
The problem is with the length assigned to such field during run session. The field length is usually smaller ,say 4, at runtime. So if you are trying to set a value of length more than 4, you will get this error.<br />
<br />
I figured out a way of doing with using the below undocumented method.<br />
<br />
SAPGuiSession("Session").SAPGuiWindow("Display Order").SAPGuiEdit("&lt;FieldName&gt;").Object.text="&lt;Your Text&gt;"<br />
<br />
The above code worked fine for me. <br />
<br />
Hope this will help few of you. <img src="http://www.learnqtp.com/forums/images/smilies/smile.gif" style="vertical-align: middle;" border="0" alt="Smile" title="Smile" /><br />
<br />
Regards,<br />
Ankesh]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[QTP gives wrong value through GetRoProperty]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-gives-wrong-value-through-GetRoProperty</link>
			<pubDate>Fri, 03 Feb 2012 12:30:37 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-gives-wrong-value-through-GetRoProperty</guid>
			<description><![CDATA[In our application there are two value in drop down. We select first value and apply method GetRoProperties("text"). QTP gives second value.<br />
Can any one rectify why this is happening?]]></description>
			<content:encoded><![CDATA[In our application there are two value in drop down. We select first value and apply method GetRoProperties("text"). QTP gives second value.<br />
Can any one rectify why this is happening?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Why is the object name a value instead of a name?]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Why-is-the-object-name-a-value-instead-of-a-name</link>
			<pubDate>Thu, 02 Feb 2012 20:30:25 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Why-is-the-object-name-a-value-instead-of-a-name</guid>
			<description><![CDATA[Why do some objects in the object repository have the value of the object instead of a name in the object name property? So far I have only seen this occur in display only fields and when the Object Class property is "SwfObject.<br />
<br />
The problem, of course, is that I have to assign a more reasonable name manually to use the object in a test and then the name is not maintained from version to version of the code under test.<br />
<br />
Is the assignment of the object value to the object name property due to QTP or is this a result of a setting in the tool used to set up the object in Virtual Studio?<br />
<br />
If this is a setting that the developer can change or if I could specify QTP to use the swfname from the Description Properties by default, for example, it would make writing tests, so much easier! <br />
<br />
From what I have read, the name of the object must be "properly exposed" for the compiler to associate an object name with it.. but the developers tell me they don't know what controls this.<br />
<br />
Anyone know how this works? <br />
<br />
(I am  using QTP ver 10.00 Build 513 on Windows XP).<br />
<br />
Thank you,<br />
David<br />
Gainesville, FL. USA]]></description>
			<content:encoded><![CDATA[Why do some objects in the object repository have the value of the object instead of a name in the object name property? So far I have only seen this occur in display only fields and when the Object Class property is "SwfObject.<br />
<br />
The problem, of course, is that I have to assign a more reasonable name manually to use the object in a test and then the name is not maintained from version to version of the code under test.<br />
<br />
Is the assignment of the object value to the object name property due to QTP or is this a result of a setting in the tool used to set up the object in Virtual Studio?<br />
<br />
If this is a setting that the developer can change or if I could specify QTP to use the swfname from the Description Properties by default, for example, it would make writing tests, so much easier! <br />
<br />
From what I have read, the name of the object must be "properly exposed" for the compiler to associate an object name with it.. but the developers tell me they don't know what controls this.<br />
<br />
Anyone know how this works? <br />
<br />
(I am  using QTP ver 10.00 Build 513 on Windows XP).<br />
<br />
Thank you,<br />
David<br />
Gainesville, FL. USA]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to close a Window obj with a "text:="&#x26; ReportName]]></title>
			<link>http://www.learnqtp.com/forums/Thread-How-to-close-a-Window-obj-with-a-text-ReportName</link>
			<pubDate>Thu, 02 Feb 2012 17:49:46 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-How-to-close-a-Window-obj-with-a-text-ReportName</guid>
			<description><![CDATA[Currently, the code below close all of my objects with micclaasss = window. I need to close a Window obj with a "text:="&amp; ReportName &amp; ".*" only.<br />
<br />
How do I add this in?<br />
<br />
Sub CloseWindow (ReportName)<br />
<br />
   'CLOSE REPORTNAME BROWSER<br />
		Set oWindow=Description.Create()<br />
		oWindow("micclass").Value="Window"<br />
		Set obj=Desktop.ChildObjects(oWindow)<br />
		For i=0 to obj.Count-1<br />
		obj(i).Close<br />
		Next<br />
<br />
End Sub<br />
<br />
Do i just add:<br />
oWindow("text").Value=ReportName]]></description>
			<content:encoded><![CDATA[Currently, the code below close all of my objects with micclaasss = window. I need to close a Window obj with a "text:="&amp; ReportName &amp; ".*" only.<br />
<br />
How do I add this in?<br />
<br />
Sub CloseWindow (ReportName)<br />
<br />
   'CLOSE REPORTNAME BROWSER<br />
		Set oWindow=Description.Create()<br />
		oWindow("micclass").Value="Window"<br />
		Set obj=Desktop.ChildObjects(oWindow)<br />
		For i=0 to obj.Count-1<br />
		obj(i).Close<br />
		Next<br />
<br />
End Sub<br />
<br />
Do i just add:<br />
oWindow("text").Value=ReportName]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[QTP 11 and Flex 4.5]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-11-and-Flex-4-5</link>
			<pubDate>Thu, 02 Feb 2012 15:31:09 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-11-and-Flex-4-5</guid>
			<description><![CDATA[Hi,<br />
<br />
I am trying to use QTP to test a flash app.<br />
I installed QTP11, and the Flex 4.5 plugin for QTP on my Win7 64b system.<br />
I select the Flex, ActiveX and Web add-in at QTP startup.<br />
I also applied the procedure below (from Adobe site) to build my flash app:<br />
<span style="font-style: italic;">[i]To use run-time automated testing (recommended):<br />
<br />
    Open a command prompt.<br />
    Navigate to the flex_builder_root/sdks/4.5.1/templates/automation-runtimeloading-files directory.<br />
    Execute the build.bat file. This compiles the runtimeloading.mxml file into a SWF file.<br />
    Copy the runtimeloading.swf and RunTimeLoading.html file to your web server. Copy the Flex application that you want to test to this server as well (the application need not be compiled with automation libraries).<br />
    Request the RunTimeLoading.html file and pass your Flex application as the automationswfurl query string parameter; for example:<br />
<br />
    http://localhost/RunTimeLoading.html?automationswfurl=MyApp.swf</span>[/i]<br />
<br />
<br />
<br />
But when I do a "navigate and learn" from the repository manager, QTP is still unable to see Flash content, all it sees is a WebObject, nothing more.<br />
<br />
On another Windows server 2008 32b, it's a bit better,, the Object Spy is able to see flash objects,however, Navigate and Learn does not see any details, only a WinObject.<br />
<br />
Any suggestions,<br />
Thanks]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I am trying to use QTP to test a flash app.<br />
I installed QTP11, and the Flex 4.5 plugin for QTP on my Win7 64b system.<br />
I select the Flex, ActiveX and Web add-in at QTP startup.<br />
I also applied the procedure below (from Adobe site) to build my flash app:<br />
<span style="font-style: italic;">[i]To use run-time automated testing (recommended):<br />
<br />
    Open a command prompt.<br />
    Navigate to the flex_builder_root/sdks/4.5.1/templates/automation-runtimeloading-files directory.<br />
    Execute the build.bat file. This compiles the runtimeloading.mxml file into a SWF file.<br />
    Copy the runtimeloading.swf and RunTimeLoading.html file to your web server. Copy the Flex application that you want to test to this server as well (the application need not be compiled with automation libraries).<br />
    Request the RunTimeLoading.html file and pass your Flex application as the automationswfurl query string parameter; for example:<br />
<br />
    http://localhost/RunTimeLoading.html?automationswfurl=MyApp.swf</span>[/i]<br />
<br />
<br />
<br />
But when I do a "navigate and learn" from the repository manager, QTP is still unable to see Flash content, all it sees is a WebObject, nothing more.<br />
<br />
On another Windows server 2008 32b, it's a bit better,, the Object Spy is able to see flash objects,however, Navigate and Learn does not see any details, only a WinObject.<br />
<br />
Any suggestions,<br />
Thanks]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Window Object does not react without RDP]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Window-Object-does-not-react-without-RDP</link>
			<pubDate>Thu, 02 Feb 2012 15:13:58 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Window-Object-does-not-react-without-RDP</guid>
			<description><![CDATA[Hello , <br />
im Using QTP 9,5 and try to generate automated scripts for an Application<br />
The first thing i realized is, that the application is only recognized als Window Object, so i have to use positions x,y to move in the application.<br />
This is not good but does not making any trouble. The terrible thing is: <br />
My Testcase only runs, when i watch via RDP.<br />
When i dont watch via RDP, i cant login into my application:<br />
<br />
<blockquote><cite>Quote:</cite>Window("Customer Management").Window("Sign in").Activate<br />
Window("Customer Management").Window("Sign in").Click 165,70<br />
Window("Customer Management").Window("Sign in").Type username<br />
Window("Customer Management").Window("Sign in").Click 159,89<br />
Window("Customer Management").Window("Sign in").Type password<br />
Window("Customer Management").Window("Sign in").Click 213,154</blockquote>
[/quote]<br />
<br />
username and password are declared and initialized variables<br />
In my oppinion all looks pretty well so i dont understand why qtp cannot realize this steps while im not watching per RDP.<br />
My suggestion was that the method type can only be performed when there is a active keyboard (O.o). <br />
Any suggestions ?=)<br />
<br />
Regards <br />
Dennis]]></description>
			<content:encoded><![CDATA[Hello , <br />
im Using QTP 9,5 and try to generate automated scripts for an Application<br />
The first thing i realized is, that the application is only recognized als Window Object, so i have to use positions x,y to move in the application.<br />
This is not good but does not making any trouble. The terrible thing is: <br />
My Testcase only runs, when i watch via RDP.<br />
When i dont watch via RDP, i cant login into my application:<br />
<br />
<blockquote><cite>Quote:</cite>Window("Customer Management").Window("Sign in").Activate<br />
Window("Customer Management").Window("Sign in").Click 165,70<br />
Window("Customer Management").Window("Sign in").Type username<br />
Window("Customer Management").Window("Sign in").Click 159,89<br />
Window("Customer Management").Window("Sign in").Type password<br />
Window("Customer Management").Window("Sign in").Click 213,154</blockquote>
[/quote]<br />
<br />
username and password are declared and initialized variables<br />
In my oppinion all looks pretty well so i dont understand why qtp cannot realize this steps while im not watching per RDP.<br />
My suggestion was that the method type can only be performed when there is a active keyboard (O.o). <br />
Any suggestions ?=)<br />
<br />
Regards <br />
Dennis]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Where is the Flex add-in ?]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Where-is-the-Flex-add-in</link>
			<pubDate>Thu, 02 Feb 2012 14:12:00 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Where-is-the-Flex-add-in</guid>
			<description><![CDATA[Hello,<br />
<br />
I am using QTP 11 on Win7 64 bits.<br />
I have a flash application to test, my understanding is that I need the Flex add-in from Adobe, that is (was ?) delivered with Flash Builder.<br />
So I installed Flash Builder 4.5 from Adobe, hoping it will come with this add-in, but no way, when I start QTP, it does not show the Flex add-in.<br />
<br />
Do I have anything to do in order for QTP to see the add-in ?<br />
<br />
Thanks for helping,]]></description>
			<content:encoded><![CDATA[Hello,<br />
<br />
I am using QTP 11 on Win7 64 bits.<br />
I have a flash application to test, my understanding is that I need the Flex add-in from Adobe, that is (was ?) delivered with Flash Builder.<br />
So I installed Flash Builder 4.5 from Adobe, hoping it will come with this add-in, but no way, when I start QTP, it does not show the Flex add-in.<br />
<br />
Do I have anything to do in order for QTP to see the add-in ?<br />
<br />
Thanks for helping,]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Unable to identify the Tree Component(TIBCO UI) ]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Unable-to-identify-the-Tree-Component-TIBCO-UI</link>
			<pubDate>Thu, 02 Feb 2012 12:36:24 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Unable-to-identify-the-Tree-Component-TIBCO-UI</guid>
			<description><![CDATA[Hi,<br />
Iam using QTP 9.2,Tibco UI and Java application.<br />
QTP identify the Tree component as web element.<br />
Is there any way to expand that Tree.?<br />
<br />
Any help please....... <br />
<br />
<br />
Regards,<br />
Mahendra]]></description>
			<content:encoded><![CDATA[Hi,<br />
Iam using QTP 9.2,Tibco UI and Java application.<br />
QTP identify the Tree component as web element.<br />
Is there any way to expand that Tree.?<br />
<br />
Any help please....... <br />
<br />
<br />
Regards,<br />
Mahendra]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[QTP Test parameters in QC Test Set]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-Test-parameters-in-QC-Test-Set</link>
			<pubDate>Thu, 02 Feb 2012 11:01:05 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-Test-parameters-in-QC-Test-Set</guid>
			<description><![CDATA[Hi All,<br />
<br />
Can we use the QTP input and output Test parameters in QC Test lab. If it is possible, how to pass the output test parameter to another test in test set.<br />
<br />
regards,<br />
Baba]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
Can we use the QTP input and output Test parameters in QC Test lab. If it is possible, how to pass the output test parameter to another test in test set.<br />
<br />
regards,<br />
Baba]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[QTP tutorial fails systematically]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-tutorial-fails-systematically</link>
			<pubDate>Thu, 02 Feb 2012 10:39:46 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-tutorial-fails-systematically</guid>
			<description><![CDATA[Hi,<br />
<br />
I just installed QTP 11 and patch 699 on Win 7 64 bits, and tries to run the tutorial with IE8.<br />
It systematically fails at the "Check Page" checkpoint execution.<br />
<br />
The errors that are detected are random, most often, it found 7 images instead of 11, sometimes, it does not find ANY image nor links ...(for example after deleting browsing history).<br />
I restarted the tutorial 4 or 5 times, no luck.<br />
The tutorial works fine on my Win 2008 server (32 bits) machines, with IE8.<br />
<br />
If anyone has suggestions ...?]]></description>
			<content:encoded><![CDATA[Hi,<br />
<br />
I just installed QTP 11 and patch 699 on Win 7 64 bits, and tries to run the tutorial with IE8.<br />
It systematically fails at the "Check Page" checkpoint execution.<br />
<br />
The errors that are detected are random, most often, it found 7 images instead of 11, sometimes, it does not find ANY image nor links ...(for example after deleting browsing history).<br />
I restarted the tutorial 4 or 5 times, no luck.<br />
The tutorial works fine on my Win 2008 server (32 bits) machines, with IE8.<br />
<br />
If anyone has suggestions ...?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Use QTP to test .net Window service]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Use-QTP-to-test-net-Window-service</link>
			<pubDate>Thu, 02 Feb 2012 10:37:09 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Use-QTP-to-test-net-Window-service</guid>
			<description><![CDATA[Hi Friends,<br />
I have to create automated test suite to test a .net window service. This window service basically processes a input file. There is a watcher on a folder and the service picks the file and processes it.<br />
<br />
Can someone please guide me as how I can use QTP to automate the window service ?<br />
<br />
Thanks in advance]]></description>
			<content:encoded><![CDATA[Hi Friends,<br />
I have to create automated test suite to test a .net window service. This window service basically processes a input file. There is a watcher on a folder and the service picks the file and processes it.<br />
<br />
Can someone please guide me as how I can use QTP to automate the window service ?<br />
<br />
Thanks in advance]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[QTP Test Parameters scope in QC Test Set]]></title>
			<link>http://www.learnqtp.com/forums/Thread-QTP-Test-Parameters-scope-in-QC-Test-Set</link>
			<pubDate>Thu, 02 Feb 2012 10:35:41 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-QTP-Test-Parameters-scope-in-QC-Test-Set</guid>
			<description><![CDATA[Hi All,<br />
<br />
Can we use output parameters defined in QTP test as input parameters to another QTP Test in QC Test Lab.<br />
<br />
We've Test parameters and Action Parameters... Action parameters can be shared between Actions... How the Test parameters will be shared between tests?  (In Test set of QC Test Lab)<br />
<br />
regards,<br />
B]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
Can we use output parameters defined in QTP test as input parameters to another QTP Test in QC Test Lab.<br />
<br />
We've Test parameters and Action Parameters... Action parameters can be shared between Actions... How the Test parameters will be shared between tests?  (In Test set of QC Test Lab)<br />
<br />
regards,<br />
B]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[The existing script is not ran in qtp]]></title>
			<link>http://www.learnqtp.com/forums/Thread-The-existing-script-is-not-ran-in-qtp</link>
			<pubDate>Thu, 02 Feb 2012 06:15:44 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-The-existing-script-is-not-ran-in-qtp</guid>
			<description><![CDATA[Hi All,<br />
<br />
I am new in qtp, right now i am implementing qtp tool in one of our project for web based application. Now i am facing a problem what it is, while running the same existing script today in qtp, system does not recognise those script but earlier the script was executed successfully. Some time the existing script is executed successfully after recording and playback. What could be a problem?]]></description>
			<content:encoded><![CDATA[Hi All,<br />
<br />
I am new in qtp, right now i am implementing qtp tool in one of our project for web based application. Now i am facing a problem what it is, while running the same existing script today in qtp, system does not recognise those script but earlier the script was executed successfully. Some time the existing script is executed successfully after recording and playback. What could be a problem?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to retrieve data from excel to datatable]]></title>
			<link>http://www.learnqtp.com/forums/Thread-How-to-retrieve-data-from-excel-to-datatable</link>
			<pubDate>Wed, 01 Feb 2012 16:36:26 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-How-to-retrieve-data-from-excel-to-datatable</guid>
			<description><![CDATA[Hi,<br />
   Please can any one let me know how to retrieve data from excel to datatable?<br />
Regards,<br />
Shwetha]]></description>
			<content:encoded><![CDATA[Hi,<br />
   Please can any one let me know how to retrieve data from excel to datatable?<br />
Regards,<br />
Shwetha]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[PowerBuilder 12.5 Alternative testing solution]]></title>
			<link>http://www.learnqtp.com/forums/Thread-PowerBuilder-12-5-Alternative-testing-solution</link>
			<pubDate>Wed, 01 Feb 2012 15:43:00 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-PowerBuilder-12-5-Alternative-testing-solution</guid>
			<description><![CDATA[Has anyone been successfull in finding a automated testing tool that is compatible with Powerbuilder 12.5?]]></description>
			<content:encoded><![CDATA[Has anyone been successfull in finding a automated testing tool that is compatible with Powerbuilder 12.5?]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Fixing broken Checkpoints]]></title>
			<link>http://www.learnqtp.com/forums/Thread-Fixing-broken-Checkpoints</link>
			<pubDate>Wed, 01 Feb 2012 14:54:40 +0000</pubDate>
			<guid isPermaLink="false">http://www.learnqtp.com/forums/Thread-Fixing-broken-Checkpoints</guid>
			<description><![CDATA[I have been using a set of checkpoints for a long time now, and just recently they stopped working. As you can see by my screenshots, everything is setup correctly “I think”. Can someone look over my OR and code screenshots and let me know what my issue may be?<br />
<br />
Run Error:<br />
The "WebTable_AccountNo"  object was not found in the Object Repository.<br />
Check the Object Repository to confirm that the object exists or to find the correct name for the object.<br />
Line (178): ".WebElement("WebTable_AccountNo").Check CheckPoint("Account No.") ' was WebTable". <br />
Tip: If the objects in your application have changed, the Maintenance Run Mode can <br />
help you identify and update your steps and/or the objects in your repository.<br />
<br />
see attachment<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/pdf.gif" border="0" alt=".pdf" />&nbsp;&nbsp;<a href="attachment.php?aid=921" target="_blank">Fixing broken CheckPoints.pdf</a> (Size: 137.26 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></description>
			<content:encoded><![CDATA[I have been using a set of checkpoints for a long time now, and just recently they stopped working. As you can see by my screenshots, everything is setup correctly “I think”. Can someone look over my OR and code screenshots and let me know what my issue may be?<br />
<br />
Run Error:<br />
The "WebTable_AccountNo"  object was not found in the Object Repository.<br />
Check the Object Repository to confirm that the object exists or to find the correct name for the object.<br />
Line (178): ".WebElement("WebTable_AccountNo").Check CheckPoint("Account No.") ' was WebTable". <br />
Tip: If the objects in your application have changed, the Maintenance Run Mode can <br />
help you identify and update your steps and/or the objects in your repository.<br />
<br />
see attachment<br /><!-- start: postbit_attachments_attachment -->
<br /><img src="images/attachtypes/pdf.gif" border="0" alt=".pdf" />&nbsp;&nbsp;<a href="attachment.php?aid=921" target="_blank">Fixing broken CheckPoints.pdf</a> (Size: 137.26 KB / Downloads: 3)
<!-- end: postbit_attachments_attachment -->]]></content:encoded>
		</item>
	</channel>
</rss>
