<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>TestWisely RSS Feed</title>
    <link>http://testwisely.com/rss/</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>The main blog feed for TestWisely.com.</description>
    
    
        <item>
          <title>Watir-WebDriver support in TestWise2</title>
          <description>&lt;h3&gt;Watir-WebDriver support in TestWise2&lt;/h3&gt;


&lt;p&gt;Selenium and Watir, as we know, are the two most popular open-source testing frameworks. The next big thing is &lt;a href=&quot;http://seleniumhq.org/docs/09_webdriver.html&quot; target=&quot;_blank&quot;&gt;WebDriver&lt;/a&gt;, which is now merged with &lt;a href=&quot;http://code.google.com/p/selenium/&quot;&gt;Selenium 2&lt;/a&gt;. Thanks &lt;a href=&quot;http://github.com/jarib&quot;&gt;Jari Bakken&lt;/a&gt; (who is also the creator of &lt;a href=&quot;http://github.com/jarib/celerity&quot; target=&quot;_blank&quot;&gt;Celerity&lt;/a&gt;), we have Ruby bindings for Selenium 2 and even Watir wrapper of it: &lt;a href=&quot;http://github.com/jarib/watir-webdriver&quot;&gt;watir-webdriver&lt;/a&gt;, which some might refer it as &lt;a href=&quot;http://watirpodcast.com/31-jari-bakken-and-simon-stewart-on-watir-2-0-selenium-and-webdriver-celerity-and-htmlunit/&quot; target=&quot;_blank&quot;&gt;Watir 2.0&lt;/a&gt;. With watir-webdriver, users can pretty much reuse existing Watir scripts, with minor changes.&lt;/p&gt;

&lt;p&gt;What are the benefits of using watir-webdriver comparing existing Watir 1.6.5?
&lt;ul&gt;
   &lt;li&gt;Run same test scripts in IE, Firefox, Google Chrome and HTMLUnit (headless)&lt;/li&gt;
   &lt;li&gt;No JSSH plugin required for running tests in Firefox&lt;/li&gt;
   &lt;li&gt;Synergy of combination of Selenium and Watir&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;

&lt;p&gt;In last appearance at 
&lt;a href=&quot;http://watirpodcast.com/34-zhimin-zhan-on-testwise&quot; target=&quot;_blank&quot;&gt;Watir Podcast&lt;/a&gt;,
I said future TestWise versions will support WebDriver. Now you can try web-driver in IDE!
&lt;/p&gt;

&lt;ol&gt;
   &lt;li&gt;Download &lt;a href=&quot;/downloads/TestWise-2.0a1-setup.exe&quot;&gt;TestWise-2.0a1-setup.exe&lt;/a&gt; and install&lt;/li&gt;
   &lt;li&gt;In TestWise, open sample project c:\program files\testwise\samples\demo\demo.tpr (if you are using TestWise first, it shall be pre-loaded)
   &lt;li&gt;Select the first test script file (left mouse click the file name on the left): &lt;b&gt;ajax_rwebspec_spec.rb&lt;/b&gt;,   &lt;br&gt;
choose your browser (IE, Firefox or Chrome), then run it. &lt;br&gt;
&amp;nbsp; &lt;img src=&quot;/images/blog/testwise2_toolbar_run.png&quot;/&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;div&gt;&lt;br&gt; Our initial impression with Watir-WebDriver is good and very promising, with a few issues: 
   &lt;ul&gt;
     &lt;li&gt;Can't reuse existing browser window, has to start up a new one&lt;/li&gt;
     &lt;li&gt;Test execution is slower than Watir 1.6&lt;/li&gt;
     &lt;li&gt;Opening browser operation seems quite CPU intensive&lt;/li&gt;
   &lt;/ul&gt;
&lt;/div&gt;
&lt;br&gt;
&lt;p&gt;Please note that both Selenium 2 and TestWise2 are at early development stage, so please use Watir 1.6.5 and TestWise 1.9 for production use.&lt;/p&gt; 
</description>
          <pubDate>Tue, 27 Jul 2010 00:00:00 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/07/27/watir-webdriver-support-in-testwise2/</guid>
          <link>http://testwisely.com/articles/2010/07/27/watir-webdriver-support-in-testwise2/</link>
        </item>
    
        <item>
          <title>Test sites with native Windows authentication</title>
          <description>&lt;h3&gt;Test sites with native Windows authentication&lt;/h3&gt;
&lt;div class=&quot;posted&quot;&gt;Posted by Zhimin Zhan on July 14, 2010&lt;em&gt;|&lt;/em&gt;&lt;img src=&quot;http://spurrd.com/assets/123/comment.png&quot; /&gt;
&lt;a href=&quot;/articles/2010/07/14/test-sites-with-native-windows-authentication/#disqus_thread&quot;&gt;Comments&lt;/a&gt;&lt;/div&gt;
&lt;br/&gt;
&lt;div class=&quot;blog-content&quot;&gt;

&lt;p&gt;For some sites (especially in .NET world), users are presented a native windows' authentication window (like below) before can access to it.&lt;/p&gt;

&lt;img src=&quot;/images/blog/windows-authentication.png&quot; /&gt;

&lt;p&gt;The standard &lt;b&gt;open_browser&lt;/b&gt; in Watir won't work (get stuck), as it will be waiting response from the browser. 
&lt;pre&gt;  open_browser(&quot;http://secure.site.com&quot;) # will stuck &lt;/pre&gt;
&lt;/p&gt;

&lt;p&gt;To add a bit more complexity, we expect the same tests to pass whether user has already logged in or not.&lt;/p&gt;

&lt;p&gt;The solution is: 
&lt;ul&gt;
  &lt;li&gt;Detecting Login Window using Ruby's timeout
  &lt;li&gt;Use AutoIt to fill user name and password in native Windows Login Window.
&lt;/ul&gt;
&lt;/p&gt;
 
&lt;pre class=&quot;brush: ruby;&quot; name=&quot;code&quot;&gt;
    begin
      Timeout::timeout(5) {
        open_browser(&quot;http://secure.site.com&quot;)
      }
    rescue Timeout::Error =&gt; e
      # debug &quot;Timeout error on get to site, maybe asking for login&quot;
      autoit = WIN32OLE.new('AutoItX3.Control')
      win_title = &quot;Connect to edam.bluefirems.com.au&quot;
      ret = autoit.WinWait(win_title, '', 10)
      if ret
        autoit.ControlSetText(win_title, &quot;&quot;, &quot;Edit2&quot;, username)
        autoit.ControlSetText(win_title, &quot;&quot;, &quot;Edit3&quot;, password)
        autoit.ControlClick(win_title, &quot;&quot;, &quot;Button3&quot;)
      end
   end
&lt;/pre&gt;

&lt;p&gt;The above test scripts will work, but not readable. By applying 'Extract Function' and &quot;Move to Helper&quot; Refactorings in TestWise, we get:  &lt;/p&gt;

&lt;pre class=&quot;brush: ruby;&quot; name=&quot;code&quot;&gt;
    # ...
    rescue Timeout::Error =&gt; e
      # debug &quot;Timeout error on get to site, maybe asking for login&quot;
      # calling helper function in test_helper.rb
       
      login_as(&quot;zhimin@secure.site.com&quot;, &quot;Secret&quot;)    
    end
&lt;/pre&gt;

&lt;/div&gt;

&lt;div id=&quot;disqus_thread&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://disqus.com/forums/TestWiseblog/embed.js&quot;&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href=&quot;http://TestWiseblog.disqus.com/?url=ref&quot;&gt;View the discussion thread.&lt;/a&gt;&lt;/noscript&gt;&lt;a href=&quot;http://disqus.com&quot; class=&quot;dsq-brlink&quot;&gt;blog comments powered by &lt;span class=&quot;logo-disqus&quot;&gt;Disqus&lt;/span&gt;&lt;/a&gt;
</description>
          <pubDate>Wed, 14 Jul 2010 00:00:00 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/07/14/test-sites-with-native-windows-authentication/</guid>
          <link>http://testwisely.com/articles/2010/07/14/test-sites-with-native-windows-authentication/</link>
        </item>
    
        <item>
          <title>Database Reset in Automated Testing</title>
          <description>&lt;h3&gt;Database Reset in Automated Testing&lt;/h3&gt;
&lt;div class=&quot;posted&quot;&gt;Posted by Zhimin Zhan on June 11, 2010&lt;em&gt;|&lt;/em&gt;&lt;img src=&quot;http://spurrd.com/assets/123/comment.png&quot; /&gt;
&lt;a href=&quot;/articles/2010/06/11/database-reset-in-automated-testing/#disqus_thread&quot;&gt;Comments&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;blog-content&quot;&gt;

&lt;p&gt;At TIST conference, after my demonstration, on tester asked me &quot;We saw you running the same test (changing password) twice, before and after refactoring, how could it work second time? The data has been changed from first run.&quot;.  The answer was database reset, ie. the database is reset to the known state before running each test. As I have been doing this for a number of years now, it almost become second nature to me in terms of automated testing. To make the concept of database reset easy to remember, I call it &lt;b&gt;&quot;The Simpsons Pattern&quot;&lt;/b&gt;.&lt;/p&gt; 

&lt;p&gt;Benefits of database reset is so important that you probably will appreciate only after experience it. Once I asked a business analyst to rate his view of importance on database reset in scale of 1 - 10. He answered &quot;9.... No, 10&quot;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Develop tests without worrying of data changes caused by tests, what a feeling!
&lt;li&gt; Faster test execution. Use seeded data records instead of creating data from scratch every time.
&lt;li&gt; Always know data record states, great even for manual inspections of applications. 
&lt;/ul&gt;

My typical RWebSpec test scripts like this:

&lt;pre class=&quot;brush: ruby;&quot; name=&quot;code&quot;&gt;suite &quot;Group of related test cases&quot; do
  include TestHelper

  before(:all) do
    open_browser
  end

  before(:each) do
    reset_database
    login_as(&quot;zhimin&quot;)
  end

  after(:each) do
    failsafe{ logout }
  end

  test &quot;One test&quot; do
    # might change application records
  end

  test &quot;Another test case&quot; do
    # doesn't matter the above test is run or not, as we start fresh
  end
end&lt;/pre&gt;

&lt;p&gt;Now comes the hard question, how could you implement database reset as testers? No, it has to been done by developers. If your team is doing Agile (or claiming so), go ask them, and it will be of great help for them as well.  From experience, the better architecture, easier to implement database reset and the earlier the better.&lt;/p&gt;

&lt;/div&gt;
&lt;div id=&quot;disqus_thread&quot;&gt;&lt;/div&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://disqus.com/forums/TestWiseblog/embed.js&quot;&gt;&lt;/script&gt;&lt;noscript&gt;&lt;a href=&quot;http://TestWiseblog.disqus.com/?url=ref&quot;&gt;View the discussion thread.&lt;/a&gt;&lt;/noscript&gt;&lt;a href=&quot;http://disqus.com&quot; class=&quot;dsq-brlink&quot;&gt;blog comments powered by &lt;span class=&quot;logo-disqus&quot;&gt;Disqus&lt;/span&gt;&lt;/a&gt;
</description>
          <pubDate>Fri, 11 Jun 2010 05:20:11 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/06/11/database-reset-in-automated-testing/</guid>
          <link>http://testwisely.com/articles/2010/06/11/database-reset-in-automated-testing/</link>
        </item>
    
        <item>
          <title>Watir Podcast on TestWise</title>
          <description>&lt;h3&gt;Watir Podcast on TestWise&lt;/h3&gt;
&lt;p&gt;My Podcast interview with Željko Filipin (the host of Watir Podcast) and Alister Scott (WebMaster of Watir.com) is now published:   &lt;a href=&quot;http://watirpodcast.com/34-zhimin-zhan-on-testwise/&quot;&gt;Watir Podcast #34 Zhimin Zhan on TestWise&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Ant today is 2nd birthday for Watir Podcast, so Happy Birthday! Thanks Željko and other contributors!&lt;/p&gt;</description>
          <pubDate>Fri, 28 May 2010 03:20:28 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/05/28/watir-podcast-on-testwise/</guid>
          <link>http://testwisely.com/articles/2010/05/28/watir-podcast-on-testwise/</link>
        </item>
    
        <item>
          <title>StoryWise is released</title>
          <description>&lt;h3&gt;StoryWise is released&lt;/h3&gt;

&lt;p&gt;StoryWise, one of Agileway's Agile Testing Suite product, is a flexible web-based project management tool.&lt;/p&gt;

&lt;p&gt;StoryWise is free and open source, released under the terms of the &lt;a href=&quot;http://www.gnu.org/licenses/old-licenses/gpl-2.0.html&quot;&gt;GNU General Public License v2&lt;/a&gt; (GPL).&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;Requirement Management&lt;/li&gt;
  &lt;li&gt;Defect Tracking&lt;/li&gt;
  &lt;li&gt;Project Wiki&lt;/li&gt;
  &lt;li&gt;Time Tracking&lt;/li&gt;
  &lt;li&gt;Gantt chart and calendar&lt;/li&gt;
  &lt;li&gt;&lt;b&gt;Requirement Traceability&lt;/b&gt;&lt;/li&gt; 
&lt;/ul&gt;

&lt;p&gt;Apart from being free, simple and easy to use, StoryWise distinguishs itself from others with one unique feature: Requirement Traceability, a term nowdays gradually fades out due to &lt;a href=&quot;http://www.infoq.com/news/2008/06/agile-traceability-matrix&quot;&gt;high hype with low benefits but lots of maintainence work&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;StoryWise is different, it allows Requirement Traceability to be achieved simply and effortlessly. StoryWise was first demonstrated at &lt;a href=&quot;http://www.tstc.org.cn/meet2010/en/index.html&quot;&gt;3rd Tianjin International Conference on Software Testing&lt;/a&gt; with very positive feedbacks. &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/storywise/doc&quot;&gt;Check it out!&lt;/a&gt;&lt;/p&gt;

</description>
          <pubDate>Fri, 14 May 2010 03:40:48 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/05/14/storywise-is-released/</guid>
          <link>http://testwisely.com/articles/2010/05/14/storywise-is-released/</link>
        </item>
    
        <item>
          <title>3rd TIST Conference Slides and Videos</title>
          <description>&lt;h3&gt;3rd TIST Conference Slides and Videos&lt;/h3&gt;

&lt;p&gt;Here are the slides and videos I presented at 3rd Tianjin Software Testing conference&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;/screencasts/TIST-2010/RequirementsTraceability-EN-TianJin.pdf&quot;&gt;StoryWise + TestWise = Effortless Requirements Traceability in Automated Testing&lt;/a&gt; (pdf)&lt;/p&gt;

&lt;p&gt;Video Demonstrations － Quicktime&lt;/p&gt;
&lt;ol&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_01_storywise_create.mov&quot;&gt;Create a requirement in StoryWise&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_02_testwise_record.mov&quot;&gt;Create  an automated functional test case for it&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_03_testwise_refactor.mov&quot;&gt;Refactor it!&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_04_storywise_refresh.mov&quot;&gt;Implement Traceability&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_07_storywise_matrix.mov&quot;&gt;Generate Requirements Traceability Matrix&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/traceability_08_testwise_navigation.mov&quot;&gt;Quick TestCase Navigation&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/TIST-2010/Supplement-RFormSpec.mov&quot;&gt;Question Time: Testing non-web apps, using TestWise to test TestWise&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
</description>
          <pubDate>Mon, 26 Apr 2010 18:44:54 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/04/26/3rd-tist-conference-slides-and-videos/</guid>
          <link>http://testwisely.com/articles/2010/04/26/3rd-tist-conference-slides-and-videos/</link>
        </item>
    
        <item>
          <title>3rd Tianjin Software Testing Conference</title>
          <description>&lt;h3&gt;3rd Tianjin Software Testing Conference&lt;/h3&gt;
&lt;p&gt;I will be delivering two presentations:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Maintainable Automated Functional Testing&lt;/li&gt;
	&lt;li&gt;StoryWise + TestWise = Effortless Requirements Traceability&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;at upcoming &lt;a href=&quot;http://www.tstc.org.cn/meet2010/en/index.html&quot;&gt;3rd Tianjin 2010 International Conference on Software Testing&lt;/a&gt; in Tianjin, China.&lt;/p&gt;
&lt;p&gt;If you are happen to be around Beijing at that time, you can catch up with me there.&lt;/p&gt;</description>
          <pubDate>Tue, 13 Apr 2010 15:53:19 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/04/13/3rd-tianjin-software-testing-conference/</guid>
          <link>http://testwisely.com/articles/2010/04/13/3rd-tianjin-software-testing-conference/</link>
        </item>
    
        <item>
          <title>TestWise Celebrity License </title>
          <description>&lt;h3&gt;TestWise Celebrity License &lt;/h3&gt;
&lt;p&gt;As our appreciation for their hard work, talent and unselfishness, we offer &amp;#8216;&lt;strong&gt;Celebrity License&lt;/strong&gt;&amp;#8217; to&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Creators/Developers of popular open-source projects, and&lt;/li&gt;
	&lt;li&gt;IT book authors&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;for free. If you are and interested in TestWise &lt;span class=&quot;caps&quot;&gt;IDE&lt;/span&gt;, &lt;a href=&quot;mailto:sales@agileway.com.au?subject=Apply for Celebrity License&quot;&gt;drop us an email&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To show your celebrity status, a medal is displayed next to your name (in About Dialog).&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/images/blog/testwise_celebrity_license.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</description>
          <pubDate>Mon, 29 Mar 2010 14:09:18 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/03/29/testwise-celebrity-license/</guid>
          <link>http://testwisely.com/articles/2010/03/29/testwise-celebrity-license/</link>
        </item>
    
        <item>
          <title>AgileWay's  Agile Testing Suite</title>
          <description>&lt;h3&gt;AgileWay&amp;#8217;s  Agile Testing Suite&lt;/h3&gt;
&lt;p&gt;TestWise 1.8.7 introduced a new feature: opening test cases in TestWise from Browser.&lt;/p&gt;
&lt;p&gt;Double click C:\Program Files\TestWise\scripts\testwise_protocol.reg,&lt;br /&gt;
&lt;img src=&quot;/images/blog/testwise_protocol_reg.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;and intall the registry entry.&lt;br /&gt;
&lt;img src=&quot;/images/blog/testwise_protocol_install.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Enter a path to a test script file with &amp;#8216;testwise://&amp;#8217; prefix in browser:&lt;br /&gt;
&lt;img src=&quot;/images/blog/testwise_protocol_in_firefox.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Click &amp;#8216;OK&amp;#8217; button,&lt;br /&gt;
&lt;img src=&quot;/images/blog/launch_testwise_from_browser.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The test script file is opened in TestWise!&lt;br /&gt;
&lt;img src=&quot;/images/blog/view_in_testwise.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;You might ask, what is the use for that? Yes, It does not provide benefits for functional testing alone. However, it opens the door for collaboration among tools on functional test cases.&lt;/p&gt;
&lt;p&gt;You have seen TestWise and LoadWise (Runtime), the upcoming sister products are &amp;#8220;StoryWise&amp;#8221; : Requirement/Defect management tool and &amp;#8220;BuildWise&amp;#8221; : Continuous Build server, both with functional tests support.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;/images/agileway_toolset.png&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;</description>
          <pubDate>Fri, 19 Mar 2010 15:41:38 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/03/19/agileway-toolset/</guid>
          <link>http://testwisely.com/articles/2010/03/19/agileway-toolset/</link>
        </item>
    
        <item>
          <title>ANZTB 2010 Conference Slides and Videos</title>
          <description>&lt;h3&gt;ANZTB 2010 Conference Slides and Videos&lt;/h3&gt;


&lt;p&gt;Here are the slides and videos I presented at ANZTB 2010 conference.&lt;/p&gt;

&lt;br&gt;
&lt;p&gt;&lt;a href=&quot;/downloads/Collaboration-ANZTB.pdf&quot;&gt;Presentation Slides&lt;/a&gt; (pdf)&lt;/p&gt;

&lt;p&gt;Video Demonstrations (Quicktime)&lt;/p&gt;
&lt;ol&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/001_hands_on_manual.mov&quot;&gt;Manual testing (webapp)&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/002_hands_on_automated.mov&quot;&gt;Automated testing (webapp)&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/003_testwise_new_project.mov&quot;&gt;Create a new project in TestWise&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/004_update_page_class.mov&quot;&gt;Update test scripts using Page Class&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/005_avoid_confrontation.mov&quot;&gt;Collaboration: Avoid Confrontation- 'It worked on my macine;&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/006_test_driven.mov&quot;&gt;Collaboration: Acceptance Driven Test Development with TestWise&lt;/a&gt;&lt;/li&gt;
   &lt;li&gt;&lt;a href=&quot;/screencasts/ANZTB-2010/Supplement-RFormSpec.mov&quot;&gt;Question time: Testing non-web apps, using TestWise to test TestWise&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;</description>
          <pubDate>Thu, 04 Mar 2010 02:00:18 GMT</pubDate>
          <guid>http://testwisely.com/articles/2010/03/04/anztb-2010-conference-slides-and-videos/</guid>
          <link>http://testwisely.com/articles/2010/03/04/anztb-2010-conference-slides-and-videos/</link>
        </item>
    
    
  </channel>
</rss>

