
<?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 for QA Evangelist</title>
	<atom:link href="http://blog.qaevangelist.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.qaevangelist.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 25 Aug 2010 19:58:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Clash of the Titans by Tim Harrison</title>
		<link>http://blog.qaevangelist.com/?p=240&#038;cpage=1#comment-5019</link>
		<dc:creator>Tim Harrison</dc:creator>
		<pubDate>Wed, 25 Aug 2010 19:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=240#comment-5019</guid>
		<description>I ran into an Aerospace engineer the other day at a party. When he found out what I did, I could tell he didn&#039;t like me in the least bit. He was young thought. Maybe someday he&#039;ll learn to like QA.</description>
		<content:encoded><![CDATA[<p>I ran into an Aerospace engineer the other day at a party. When he found out what I did, I could tell he didn&#8217;t like me in the least bit. He was young thought. Maybe someday he&#8217;ll learn to like QA.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to do Data-Driven Testing using Selenium (Excel as data source) by Arts Degree liberal online</title>
		<link>http://blog.qaevangelist.com/?p=194&#038;cpage=1#comment-4239</link>
		<dc:creator>Arts Degree liberal online</dc:creator>
		<pubDate>Fri, 25 Jun 2010 00:48:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=194#comment-4239</guid>
		<description>&lt;i&gt;Hello!I am new in data driven testing using selenium with Perl and I am working on it now. I have a text file (.txt)which has data for connecting some users (especially \user_name\ and \user_password\ separates by semi column) from Selenium with Perl. a code part is this:&#8230;..use librairies my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;sub InLogin {      # my ($user, $pwd) = @_;    printf(\InLogin\);  $sel-&gt;open_ok($webAddress . \index.php?action=Login&amp;module=Users\);     while () {	  my (@record_array) = split( /,/, $_ ); # Store comma sep. values in array	 $sel-&gt;type(\user_name\, $record_array[0]);     $sel-&gt;type(\user_password\, $record_array[1]);	 # my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;      }But it doesn&#8217;t work. Could you please give me some indications or links which allow me to enhance about it?&lt;/i&gt;
+1</description>
		<content:encoded><![CDATA[<p><i>Hello!I am new in data driven testing using selenium with Perl and I am working on it now. I have a text file (.txt)which has data for connecting some users (especially \user_name\ and \user_password\ separates by semi column) from Selenium with Perl. a code part is this:&#8230;..use librairies my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;sub InLogin {      # my ($user, $pwd) = @_;    printf(\InLogin\);  $sel-&gt;open_ok($webAddress . \index.php?action=Login&amp;module=Users\);     while () {	  my (@record_array) = split( /,/, $_ ); # Store comma sep. values in array	 $sel-&gt;type(\user_name\, $record_array[0]);     $sel-&gt;type(\user_password\, $record_array[1]);	 # my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;      }But it doesn&#8217;t work. Could you please give me some indications or links which allow me to enhance about it?</i><br />
+1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to do Data-Driven Testing using Selenium (Excel as data source) by Merlin DeJesus</title>
		<link>http://blog.qaevangelist.com/?p=194&#038;cpage=1#comment-4178</link>
		<dc:creator>Merlin DeJesus</dc:creator>
		<pubDate>Tue, 15 Jun 2010 13:37:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=194#comment-4178</guid>
		<description>Hello!
I am new in data driven testing using selenium with Perl and I am working on it now. I have a text file (.txt)which has data for connecting some users (especially \user_name\ and \user_password\ separates by semi column) from Selenium with Perl. a code part is this:
.....use librairies
 my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;
sub InLogin {
      # my ($user, $pwd) = @_;
    printf(\InLogin
\);
  $sel-&gt;open_ok($webAddress . \index.php?action=Login&amp;module=Users\);
     while () { 	  
	  my (@record_array) = split( /,/, $_ ); # Store comma sep. values in array 
	 $sel-&gt;type(\user_name\, $record_array[0]);  
     $sel-&gt;type(\user_password\, $record_array[1]);
	 # my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;
      }
But it doesn&#039;t work. Could you please give me some indications or links which allow me to enhance about it?

Direction using perl and data driven as file .txt
 
 } 

form of data file .txt:
merlin, toto
alain, bertrand
..

Thank you for your help.

Best Regards.</description>
		<content:encoded><![CDATA[<p>Hello!<br />
I am new in data driven testing using selenium with Perl and I am working on it now. I have a text file (.txt)which has data for connecting some users (especially \user_name\ and \user_password\ separates by semi column) from Selenium with Perl. a code part is this:<br />
&#8230;..use librairies<br />
 my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;<br />
sub InLogin {<br />
      # my ($user, $pwd) = @_;<br />
    printf(\InLogin<br />
\);<br />
  $sel-&gt;open_ok($webAddress . \index.php?action=Login&amp;module=Users\);<br />
     while () {<br />
	  my (@record_array) = split( /,/, $_ ); # Store comma sep. values in array<br />
	 $sel-&gt;type(\user_name\, $record_array[0]);<br />
     $sel-&gt;type(\user_password\, $record_array[1]);<br />
	 # my $records = \C:\Documents and Settings\mna\Bureau\merlin.txt\;<br />
      }<br />
But it doesn&#8217;t work. Could you please give me some indications or links which allow me to enhance about it?</p>
<p>Direction using perl and data driven as file .txt</p>
<p> } </p>
<p>form of data file .txt:<br />
merlin, toto<br />
alain, bertrand<br />
..</p>
<p>Thank you for your help.</p>
<p>Best Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to do Data-Driven Testing using Selenium (Excel as data source) by Troy Amyett</title>
		<link>http://blog.qaevangelist.com/?p=194&#038;cpage=1#comment-3816</link>
		<dc:creator>Troy Amyett</dc:creator>
		<pubDate>Tue, 18 May 2010 16:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=194#comment-3816</guid>
		<description>Nice work.

You could also download the community version of TestMaker to data enable them with CSVs and also run them as load tests and production service monitors. 

http://www.pushtotest.com/seleniumtutorials</description>
		<content:encoded><![CDATA[<p>Nice work.</p>
<p>You could also download the community version of TestMaker to data enable them with CSVs and also run them as load tests and production service monitors. </p>
<p><a href="http://www.pushtotest.com/seleniumtutorials" rel="nofollow">http://www.pushtotest.com/seleniumtutorials</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Data-Driven Testing by QA Evangelist &#187; Blog Archive &#187; How to do Data-Driven Testing using Selenium (Excel as data source)</title>
		<link>http://blog.qaevangelist.com/?p=196&#038;cpage=1#comment-3800</link>
		<dc:creator>QA Evangelist &#187; Blog Archive &#187; How to do Data-Driven Testing using Selenium (Excel as data source)</dc:creator>
		<pubDate>Mon, 17 May 2010 15:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=196#comment-3800</guid>
		<description>[...] First, what is Data Driven Testing?  Defined here:  Data-Driven Testing [...]</description>
		<content:encoded><![CDATA[<p>[...] First, what is Data Driven Testing?  Defined here:  Data-Driven Testing [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What kinds of testing should be considered? by George Nunez</title>
		<link>http://blog.qaevangelist.com/?p=178&#038;cpage=1#comment-3692</link>
		<dc:creator>George Nunez</dc:creator>
		<pubDate>Fri, 07 May 2010 22:48:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=178#comment-3692</guid>
		<description>Great definitions, but what guidelines could I use to decide what tests to use versus others?  Is there a priority to these tests?  What if I have a limited amount of time, which ones should I do, and which ones could I safely skip?</description>
		<content:encoded><![CDATA[<p>Great definitions, but what guidelines could I use to decide what tests to use versus others?  Is there a priority to these tests?  What if I have a limited amount of time, which ones should I do, and which ones could I safely skip?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 5 Common Problems with Software Development Process and Solutions by George Nunez</title>
		<link>http://blog.qaevangelist.com/?p=183&#038;cpage=1#comment-3691</link>
		<dc:creator>George Nunez</dc:creator>
		<pubDate>Fri, 07 May 2010 22:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=183#comment-3691</guid>
		<description>An additional problem that I have found very common in software development is &quot;Gold Plating&quot;, that is adding features or functionality that are not necessarily part of the requirement.  I have seen this come from both developers and QA.  

The watch for &quot;Gold Plating&quot; has become more critical as companies move to an Agile framework.  We tell our QAs to always ask, &quot;Where is this feature captured in the requirement/story?&quot;.  If it not, it needs to be removed.  

On the other hand, if they are writing a defect, they need to clearly point out where this functionality deviates from the captured requirement/story.  Again, if they cannot, it is not a defect.  Just because QA &quot;thinks&quot; it should be certain way, doesn&#039;t make it a defect.  Of course, they could bring it up to the business to determine if it was missed, so it could become a defect against requirement.

But, yes, &quot;Gold Plating&quot; is another item I would add to the list of &quot;Common problems in Software Development.&quot;</description>
		<content:encoded><![CDATA[<p>An additional problem that I have found very common in software development is &#8220;Gold Plating&#8221;, that is adding features or functionality that are not necessarily part of the requirement.  I have seen this come from both developers and QA.  </p>
<p>The watch for &#8220;Gold Plating&#8221; has become more critical as companies move to an Agile framework.  We tell our QAs to always ask, &#8220;Where is this feature captured in the requirement/story?&#8221;.  If it not, it needs to be removed.  </p>
<p>On the other hand, if they are writing a defect, they need to clearly point out where this functionality deviates from the captured requirement/story.  Again, if they cannot, it is not a defect.  Just because QA &#8220;thinks&#8221; it should be certain way, doesn&#8217;t make it a defect.  Of course, they could bring it up to the business to determine if it was missed, so it could become a defect against requirement.</p>
<p>But, yes, &#8220;Gold Plating&#8221; is another item I would add to the list of &#8220;Common problems in Software Development.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 10/18-20/2010 * STPCon 2010 Fall * The Mirage * Las Vegas, NV by JeremyM</title>
		<link>http://blog.qaevangelist.com/?p=120&#038;cpage=1#comment-3690</link>
		<dc:creator>JeremyM</dc:creator>
		<pubDate>Fri, 07 May 2010 21:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=120#comment-3690</guid>
		<description>Do you have a link to where I can see more information about this conference? It sounds interesting...</description>
		<content:encoded><![CDATA[<p>Do you have a link to where I can see more information about this conference? It sounds interesting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selenium IDE &amp; RC training conducted by SQA Resources in the OC by JeremyM</title>
		<link>http://blog.qaevangelist.com/?p=145&#038;cpage=1#comment-3689</link>
		<dc:creator>JeremyM</dc:creator>
		<pubDate>Fri, 07 May 2010 21:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=145#comment-3689</guid>
		<description>I agree with Tim! Even though I&#039;ve been using Selenium for over a year, these training sessions showed me additional methods I could use to test my applications more extensively.
You will definitely see me at many more of these events!
Thanks SQA!
-Jeremy</description>
		<content:encoded><![CDATA[<p>I agree with Tim! Even though I&#8217;ve been using Selenium for over a year, these training sessions showed me additional methods I could use to test my applications more extensively.<br />
You will definitely see me at many more of these events!<br />
Thanks SQA!<br />
-Jeremy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Selenium IDE &amp; RC training conducted by SQA Resources in the OC by Tim Harrison</title>
		<link>http://blog.qaevangelist.com/?p=145&#038;cpage=1#comment-3671</link>
		<dc:creator>Tim Harrison</dc:creator>
		<pubDate>Thu, 06 May 2010 00:37:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.qaevangelist.com/?p=145#comment-3671</guid>
		<description>I enjoyed the training very much. I walked away with many new skills including some great Selenium tips and how to find quick and easy script help. I also improved my basic scripting skills. I&#039;m definitely looking forward to the Performance Testing next month.</description>
		<content:encoded><![CDATA[<p>I enjoyed the training very much. I walked away with many new skills including some great Selenium tips and how to find quick and easy script help. I also improved my basic scripting skills. I&#8217;m definitely looking forward to the Performance Testing next month.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
