<?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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: QTP: Understanding the Description Object (Description.Create)</title>
	<atom:link href="http://relevantcodes.com/qtp-all-about-the-description-object-description-create/feed/" rel="self" type="application/rss+xml" />
	<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/</link>
	<description>A Test Development Resource for HP QuickTest Professional.</description>
	<lastBuildDate>Thu, 09 Feb 2012 12:13:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-54026</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Thu, 12 Jan 2012 16:50:37 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-54026</guid>
		<description>Pushkar, you forgot to add the .Click event it seems after allItems(i).</description>
		<content:encoded><![CDATA[<p>Pushkar, you forgot to add the .Click event it seems after allItems(i).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-54022</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Thu, 12 Jan 2012 16:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-54022</guid>
		<description>Supraja, It would be something like this:

&lt;pre&gt;
Browser(&quot;Some Title&quot;).WebTable(&quot;Description of Table&quot;).ChildItem(Row, Column, &quot;Link&quot;, 0).Click
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Supraja, It would be something like this:</p>
<pre>
Browser("Some Title").WebTable("Description of Table").ChildItem(Row, Column, "Link", 0).Click
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pushkar</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-53638</link>
		<dc:creator>Pushkar</dc:creator>
		<pubDate>Sat, 07 Jan 2012 17:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-53638</guid>
		<description>Hi Anshoo,

I am unable to click on the object which has been identified using description object reference.
I have written the below code:

Set vResult = Description.Create()
vResult(&quot;html tag&quot;).value = &quot;A&quot;
vResult(&quot;href&quot;).value = &quot;.*job-listings.*&quot;
vResult(&quot;micClass&quot;).value = &quot;Link&quot;

Set allItems = Browser(&quot;title:=.*&quot;).Page(&quot;title:=.*&quot;).ChildObjects(vResult)

For i = 1 to allItems.count
	allItems(i).Highlight                &#039;Working fine
	allItems(i)                                 &#039;Not able to click
Next


Please advise</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,</p>
<p>I am unable to click on the object which has been identified using description object reference.<br />
I have written the below code:</p>
<p>Set vResult = Description.Create()<br />
vResult(&#8220;html tag&#8221;).value = &#8220;A&#8221;<br />
vResult(&#8220;href&#8221;).value = &#8220;.*job-listings.*&#8221;<br />
vResult(&#8220;micClass&#8221;).value = &#8220;Link&#8221;</p>
<p>Set allItems = Browser(&#8220;title:=.*&#8221;).Page(&#8220;title:=.*&#8221;).ChildObjects(vResult)</p>
<p>For i = 1 to allItems.count<br />
	allItems(i).Highlight                &#8216;Working fine<br />
	allItems(i)                                 &#8216;Not able to click<br />
Next</p>
<p>Please advise</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: supraja</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-53477</link>
		<dc:creator>supraja</dc:creator>
		<pubDate>Tue, 03 Jan 2012 20:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-53477</guid>
		<description>Great work Anshoo! Your posts on this site and many other forums helped me resolve so many issues. very grateful to you.
hoping this one gets answered too -

I have a webtable with same link ( Edit) in each row (there are many other links in this row). I know the row &amp; column in which the link appears but the index of the link keeps changing. Can you tell me how to write a function/code snippet to click the link in the webtable.</description>
		<content:encoded><![CDATA[<p>Great work Anshoo! Your posts on this site and many other forums helped me resolve so many issues. very grateful to you.<br />
hoping this one gets answered too -</p>
<p>I have a webtable with same link ( Edit) in each row (there are many other links in this row). I know the row &amp; column in which the link appears but the index of the link keeps changing. Can you tell me how to write a function/code snippet to click the link in the webtable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bharath</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-52666</link>
		<dc:creator>bharath</dc:creator>
		<pubDate>Thu, 22 Dec 2011 13:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-52666</guid>
		<description>Hi,

Can you help me in QTP by providing some practical exercises &amp; Docs. I am a beginner. My mailid is vajja.bharath@gmail.com.

Thanks,
Bharath</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can you help me in QTP by providing some practical exercises &amp; Docs. I am a beginner. My mailid is <a href="mailto:vajja.bharath@gmail.com">vajja.bharath@gmail.com</a>.</p>
<p>Thanks,<br />
Bharath</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shri</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-46390</link>
		<dc:creator>shri</dc:creator>
		<pubDate>Thu, 17 Nov 2011 12:27:08 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-46390</guid>
		<description>Hi,
Could you please provide me the code for how to open &quot; C drive &quot; through QTP script ,Then how to navigate files accosiated to that drive. Please provide me the code as soon as possible . It will be very helpful for me.
My Mail ID: Shriniwasreddy@yahoo.com

Thanks in advance.....

Regards,
Shri</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Could you please provide me the code for how to open &#8221; C drive &#8221; through QTP script ,Then how to navigate files accosiated to that drive. Please provide me the code as soon as possible . It will be very helpful for me.<br />
My Mail ID: <a href="mailto:Shriniwasreddy@yahoo.com">Shriniwasreddy@yahoo.com</a></p>
<p>Thanks in advance&#8230;..</p>
<p>Regards,<br />
Shri</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anushachanda</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-42954</link>
		<dc:creator>anushachanda</dc:creator>
		<pubDate>Mon, 31 Oct 2011 06:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-42954</guid>
		<description>Very good article. 
Very useful.</description>
		<content:encoded><![CDATA[<p>Very good article.<br />
Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nimesh</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-40627</link>
		<dc:creator>nimesh</dc:creator>
		<pubDate>Sun, 16 Oct 2011 12:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-40627</guid>
		<description>i want to access all the object properties from the object repository at ones. i need the code. can u help me?</description>
		<content:encoded><![CDATA[<p>i want to access all the object properties from the object repository at ones. i need the code. can u help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nimesh</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-40626</link>
		<dc:creator>nimesh</dc:creator>
		<pubDate>Sun, 16 Oct 2011 12:52:41 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-40626</guid>
		<description>i need 2 access all the objects at ones from repository with its properties . i need the code. plz help me. n the properties should be converted in html file.</description>
		<content:encoded><![CDATA[<p>i need 2 access all the objects at ones from repository with its properties . i need the code. plz help me. n the properties should be converted in html file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-all-about-the-description-object-description-create/#comment-39565</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Tue, 11 Oct 2011 21:45:58 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=865#comment-39565</guid>
		<description>Julia: Can you please send me the source in a text file to anshoo [dot] arora [at] relevantcodes [dot] com?</description>
		<content:encoded><![CDATA[<p>Julia: Can you please send me the source in a text file to anshoo [dot] arora [at] relevantcodes [dot] com?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

