<?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: Working with SiebPickLists</title>
	<atom:link href="http://relevantcodes.com/qtp-working-with-siebpicklists/feed/" rel="self" type="application/rss+xml" />
	<link>http://relevantcodes.com/qtp-working-with-siebpicklists/</link>
	<description>A Resource for Test Automation Development</description>
	<lastBuildDate>Fri, 18 May 2012 07:21:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Martin</title>
		<link>http://relevantcodes.com/qtp-working-with-siebpicklists/#comment-18697</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Tue, 19 Apr 2011 15:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=68#comment-18697</guid>
		<description>Anshoo,  

Regarding SiebPicklist, we have a requirement to test that says when the Award Status (a SiebPicklist object) changes to a value of &quot;LOI&quot;, a browser side script pops up a Windows Internet Explorer dialog warning the user to enter Fees in the Fees field.  If the user selects Cancel in the dialog popup, the Award Status reverts to its previous value; if the user selects OK, the Award Status is set to &quot;LOI&quot;.  

The problem I am encountering is that the statement:

SiebApplication(&quot;repositoryname:=Siebel Life Sciences for PACT&quot;).SiebScreen(&quot;repositoryname:=Opportunities Screen&quot;).SiebView(&quot;repositoryname:=&quot; &amp; sDetailView ).SiebApplet(&quot;repositoryname:=&quot; &amp; sTopAppletName ).SiebPicklist(&quot;repositoryname:=DCRI Award Status&quot;).Select &quot;LOI&quot;

causes the Dialog popup to appear, but it &quot;hangs&quot; the test script because the Dialog popup prevents the Select statement from completing execution.  I can process the Dialog popup just fine but cannot get to it due to the &quot;hang&quot;.  There is no timeout error thrown and no way that I can see to process this with an Error handler.   I am thinking that I need to process the Dialog popup with some kind of event handler.  Do you have any suggestions on this Siebel browser side popup behavior.

Regards,

Martin</description>
		<content:encoded><![CDATA[<p>Anshoo,  </p>
<p>Regarding SiebPicklist, we have a requirement to test that says when the Award Status (a SiebPicklist object) changes to a value of &#8220;LOI&#8221;, a browser side script pops up a Windows Internet Explorer dialog warning the user to enter Fees in the Fees field.  If the user selects Cancel in the dialog popup, the Award Status reverts to its previous value; if the user selects OK, the Award Status is set to &#8220;LOI&#8221;.  </p>
<p>The problem I am encountering is that the statement:</p>
<p>SiebApplication(&#8220;repositoryname:=Siebel Life Sciences for PACT&#8221;).SiebScreen(&#8220;repositoryname:=Opportunities Screen&#8221;).SiebView(&#8220;repositoryname:=&#8221; &amp; sDetailView ).SiebApplet(&#8220;repositoryname:=&#8221; &amp; sTopAppletName ).SiebPicklist(&#8220;repositoryname:=DCRI Award Status&#8221;).Select &#8220;LOI&#8221;</p>
<p>causes the Dialog popup to appear, but it &#8220;hangs&#8221; the test script because the Dialog popup prevents the Select statement from completing execution.  I can process the Dialog popup just fine but cannot get to it due to the &#8220;hang&#8221;.  There is no timeout error thrown and no way that I can see to process this with an Error handler.   I am thinking that I need to process the Dialog popup with some kind of event handler.  Do you have any suggestions on this Siebel browser side popup behavior.</p>
<p>Regards,</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anshoo Arora</title>
		<link>http://relevantcodes.com/qtp-working-with-siebpicklists/#comment-11908</link>
		<dc:creator>Anshoo Arora</dc:creator>
		<pubDate>Sun, 14 Nov 2010 22:19:25 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=68#comment-11908</guid>
		<description>Robin,

Using DP for SiebList is NOT recommended.  You will encounter way too many issues that could be resolved by using Record/Playback.  This is a very complex object and also because of CAS API, automation using run-time descriptions does not work well. 

In your case though, since each SiebList is present in different views, you can reference different views and populate values as required through a loop + conditional statements..</description>
		<content:encoded><![CDATA[<p>Robin,</p>
<p>Using DP for SiebList is NOT recommended.  You will encounter way too many issues that could be resolved by using Record/Playback.  This is a very complex object and also because of CAS API, automation using run-time descriptions does not work well. </p>
<p>In your case though, since each SiebList is present in different views, you can reference different views and populate values as required through a loop + conditional statements..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://relevantcodes.com/qtp-working-with-siebpicklists/#comment-11318</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Thu, 21 Oct 2010 12:18:55 +0000</pubDate>
		<guid isPermaLink="false">http://relevantcodes.com/?p=68#comment-11318</guid>
		<description>Hi Anshoo,
I am faicng one issue in Siebel. I am working on Siebel Call Center. We use Descriptive Programming in automating Siebel. I have one SiebList in one of the view s and this contains different values. There is one Siebbutton and clicking on this button Popups new Applet and this applet contains another SiebList. My requirement is to select a value which should not be present in first SiebList. Can we store both the Sieblist values in an Array or do you have any better solution for the issue. Please reply ASAP.

Thanks in advance!
Robin</description>
		<content:encoded><![CDATA[<p>Hi Anshoo,<br />
I am faicng one issue in Siebel. I am working on Siebel Call Center. We use Descriptive Programming in automating Siebel. I have one SiebList in one of the view s and this contains different values. There is one Siebbutton and clicking on this button Popups new Applet and this applet contains another SiebList. My requirement is to select a value which should not be present in first SiebList. Can we store both the Sieblist values in an Array or do you have any better solution for the issue. Please reply ASAP.</p>
<p>Thanks in advance!<br />
Robin</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 11/14 queries in 0.041 seconds using disk: basic
Object Caching 302/302 objects using disk: basic
Content Delivery Network via N/A

Served from: relevantcodes.com @ 2012-05-19 11:47:07 -->
