<?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: Web UI Automation and Test using PowerShell</title>
	<atom:link href="http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/</link>
	<description>I'm not that good but I'm not that bad</description>
	<lastBuildDate>Wed, 28 Dec 2011 22:14:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
	<item>
		<title>By: Mark</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-1234</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 11 Nov 2011 21:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-1234</guid>
		<description>By some reason NavigateTo function throws an error. Any ideas?

Exception calling &quot;Navigate&quot; with &quot;1&quot; argument(s): &quot;The RPC server is unavailable. (Except
ion from HRESULT: 0x800706BA)&quot;
At line:3 char:20
+ $global:ie.Navigate &lt;&lt;&lt;&lt; (&quot;http://www.google.com/advanced_search&quot;)
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : ComMethodCOMException</description>
		<content:encoded><![CDATA[<p>By some reason NavigateTo function throws an error. Any ideas?</p>
<p>Exception calling &#8220;Navigate&#8221; with &#8220;1&#8243; argument(s): &#8220;The RPC server is unavailable. (Except<br />
ion from HRESULT: 0x800706BA)&#8221;<br />
At line:3 char:20<br />
+ $global:ie.Navigate &lt;&lt;&lt;&lt; (&quot;<a href="http://www.google.com/advanced_search&#038;quot" rel="nofollow">http://www.google.com/advanced_search&#038;quot</a> <img src='http://www.pvle.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException<br />
    + FullyQualifiedErrorId : ComMethodCOMException</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiima</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-1231</link>
		<dc:creator>Kiima</dc:creator>
		<pubDate>Wed, 02 Nov 2011 14:41:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-1231</guid>
		<description>Great article. I added a simple link click function to mine. It took me a while to find/figure it out, so I thought I&#039;d share it.

Function ClickLinkByInnerText($innertext)
{
  if ($script:doc -eq $null) {
    Write-Error &quot;Document is null&quot;
    break
  }
  $link = $script:doc.getElementsByTagName(&#039;A&#039;) &#124; where-object {$_.innerText -eq $innertext}  
  if ($link -ne $null) {
    $link.Click()
    WaitForPage
  }
  else {
    Write-Error &quot;Couldn&#039;t find link with innertext &quot;&quot;$innertext&quot;&quot;&quot;
    break
  }
}</description>
		<content:encoded><![CDATA[<p>Great article. I added a simple link click function to mine. It took me a while to find/figure it out, so I thought I&#8217;d share it.</p>
<p>Function ClickLinkByInnerText($innertext)<br />
{<br />
  if ($script:doc -eq $null) {<br />
    Write-Error &#8220;Document is null&#8221;<br />
    break<br />
  }<br />
  $link = $script:doc.getElementsByTagName(&#8216;A&#8217;) | where-object {$_.innerText -eq $innertext}<br />
  if ($link -ne $null) {<br />
    $link.Click()<br />
    WaitForPage<br />
  }<br />
  else {<br />
    Write-Error &#8220;Couldn&#8217;t find link with innertext &#8220;&#8221;$innertext&#8221;"&#8221;<br />
    break<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Davo</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-979</link>
		<dc:creator>Davo</dc:creator>
		<pubDate>Fri, 19 Mar 2010 04:18:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-979</guid>
		<description>Philippe..you ROCK! This is an excellent post, I will find this very useful. Thanks very much.</description>
		<content:encoded><![CDATA[<p>Philippe..you ROCK! This is an excellent post, I will find this very useful. Thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tom</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-978</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Tue, 02 Mar 2010 20:19:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-978</guid>
		<description>I also use that stuff for webtesting... 
As i didn&#039;t find a way to automate a fileupload natively i did this with waitn in posh.(http://watin.sourceforge.net/)
Pretty sure you ca n handle PopUps as well</description>
		<content:encoded><![CDATA[<p>I also use that stuff for webtesting&#8230;<br />
As i didn&#8217;t find a way to automate a fileupload natively i did this with waitn in posh.(<a href="http://watin.sourceforge.net/" rel="nofollow">http://watin.sourceforge.net/</a>)<br />
Pretty sure you ca n handle PopUps as well</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chan</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-974</link>
		<dc:creator>chan</dc:creator>
		<pubDate>Thu, 21 Jan 2010 07:58:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-974</guid>
		<description>hi do you have any idea, how to detect popup window using powershell?</description>
		<content:encoded><![CDATA[<p>hi do you have any idea, how to detect popup window using powershell?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-390</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Wed, 29 Jul 2009 10:59:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-390</guid>
		<description>Great stuff, thanks very much for posting this..</description>
		<content:encoded><![CDATA[<p>Great stuff, thanks very much for posting this..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Philippe</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-386</link>
		<dc:creator>Philippe</dc:creator>
		<pubDate>Thu, 16 Jul 2009 21:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-386</guid>
		<description>Nope, didn&#039;t know about that tool. Looks very intresting. Thanks for pointing it out!

However, what I wrote is more for a personnal use. The application I&#039;m currently working on need a few forms of inputs before reaching the part that I&#039;m working on, so this comes in handy.</description>
		<content:encoded><![CDATA[<p>Nope, didn&#8217;t know about that tool. Looks very intresting. Thanks for pointing it out!</p>
<p>However, what I wrote is more for a personnal use. The application I&#8217;m currently working on need a few forms of inputs before reaching the part that I&#8217;m working on, so this comes in handy.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jack Ukleja</title>
		<link>http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/comment-page-1/#comment-383</link>
		<dc:creator>Jack Ukleja</dc:creator>
		<pubDate>Wed, 15 Jul 2009 02:00:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.pvle.be/2009/06/web-ui-automationtest-using-powershell/#comment-383</guid>
		<description>Have you tried using Selenium RC? A very easy to use plug-in for Firefox that lets you record and playback and make assertions. &quot;No code required&quot;.</description>
		<content:encoded><![CDATA[<p>Have you tried using Selenium RC? A very easy to use plug-in for Firefox that lets you record and playback and make assertions. &#8220;No code required&#8221;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

