<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ketan&#039;s Musings &#187; technology</title>
	<atom:link href="http://ketan.padegaonkar.name/category/technology/feed" rel="self" type="application/rss+xml" />
	<link>http://ketan.padegaonkar.name</link>
	<description>Where he blogs about his eclipse musings</description>
	<lastBuildDate>Sat, 26 Feb 2011 18:24:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Run JRuby From Within A Jar And Package Your Own Gems Along</title>
		<link>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html</link>
		<comments>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html#comments</comments>
		<pubDate>Fri, 10 Apr 2009 03:50:35 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[experiences]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[GNU & Linux]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[eclipse-meets-jruby]]></category>
		<category><![CDATA[jruby]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=323</guid>
		<description><![CDATA[Jruby-in a jar already bundles rspec and rake, so the goal was to find out where it gets packaged. Download the jruby source zip, extract it and open the build.xml file, search for &#8220;rspec&#8221; (there&#8217;s two occurences) and you&#8217;ll find that it&#8217;s passed in as an argument to the gem installer, add in another line [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dist.codehaus.org/jruby/1.2.0/jruby-complete-1.2.0.jar">Jruby-in a jar</a> already bundles <a href="http://rspec.info/">rspec</a> and <a href="http://rake.rubyforge.org/">rake</a>, so the goal was to find out where it gets packaged.</p>
<p>Download the <a href="http://dist.codehaus.org/jruby/1.2.0/jruby-src-1.2.0.zip">jruby source zip</a>, extract it and open the build.xml file, search for &#8220;rspec&#8221; (there&#8217;s two occurences) and you&#8217;ll find that it&#8217;s passed in as an argument to the gem installer, add in another line with &#8220;cucumber&#8221;:</p>
<pre>
&lt;target name="install-gems"&gt;
  &lt;property name="jruby.home" value="${basedir}"/&gt;
  &lt;java classname="org.jruby.Main" fork="true" maxmemory="${jruby.launch.memory}" failonerror="true"&gt;
    &lt;classpath refid="build.classpath"/&gt;
    &lt;classpath path="${jruby.classes.dir}"/&gt;
    &lt;sysproperty key="jruby.home" value="${jruby.home}"/&gt;
    &lt;arg value="--command"/&gt;
    &lt;arg value="maybe_install_gems"/&gt;
    &lt;arg value="rspec"/&gt;
    &lt;arg value="rake"/&gt;
    <b>&lt;arg value="cucumber"/&gt; &lt;!-- add cucumber --&gt;</b>
    &lt;arg value="--env-shebang"/&gt;
  &lt;/java&gt;
&lt;/target&gt;
</pre>
<p>Then run ant:</p>
<pre><b>$ ant jar-complete</b></pre>
<p>To verify that everything is fine:</p>
<pre>$ <b>java -jar lib/jruby-complete.jar -S gem list</b>

*** LOCAL GEMS ***

builder (2.1.2)
cucumber (0.2.3)
diff-lcs (1.1.2)
polyglot (0.2.5)
rake (0.8.4)
rspec (1.2.2)
sources (0.0.1)
term-ansicolor (1.0.3)
treetop (1.2.5)</pre>
<p>Great we&#8217;ve now managed to package jruby-in-a-jar with some additional gems. Now to run <a href="http://ketan.padegaonkar.name/2009/04/10/cucumber-on-jruby-inside-eclipse.html">cucumber on jruby in eclipse</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Run+JRuby+From+Within+A+Jar+And+Package+Your+Own+Gems+Along&amp;link=http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html&amp;notes=Jruby-in%20a%20jar%20already%20bundles%20rspec%20and%20rake%2C%20so%20the%20goal%20was%20to%20find%20out%20where%20it%20gets%20packaged.%0A%0ADownload%20the%20jruby%20source%20zip%2C%20extract%20it%20and%20open%20the%20build.xml%20file%2C%20search%20for%20%22rspec%22%20%28there%27s%20two%20occurences%29%20and%20you%27ll%20find%20that%20it%27s%20passed%20in%20as%20an%20argument%20to%20the%20gem%20installer%2C%20add%20in%20anoth&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2009/04/10/run-jruby-from-within-a-jar-and-package-your-own-gems-along.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SWTBot 1.2.0 released</title>
		<link>http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html</link>
		<comments>http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html#comments</comments>
		<pubDate>Fri, 29 Aug 2008 21:34:25 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[functional testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=237</guid>
		<description><![CDATA[For the impatient: Direct download link: https://sourceforge.net/project/showfiles.php?group_id=188411&#38;package_id=220519&#38;release_id=622752 Update site: http://swtbot.sourceforge.net/latest/update-site/ SWTBot 1.2.0 is the 3rd of the 1.x releases of SWTBot was released last night, and there have already been about 200 downloads by the time of writing this blog post. SWTBot has always believed in release early release often mantra, and pushes out nightly [...]]]></description>
			<content:encoded><![CDATA[<p>For the impatient:<br />
Direct download link: <a href="https://sourceforge.net/project/showfiles.php?group_id=188411&amp;package_id=220519&amp;release_id=622752">https://sourceforge.net/project/showfiles.php?group_id=188411&amp;package_id=220519&amp;release_id=622752</a></p>
<p>Update site: <a href="http://swtbot.sourceforge.net/latest/update-site/">http://swtbot.sourceforge.net/latest/update-site/</a></p>
<p>SWTBot 1.2.0 is the 3rd of the 1.x releases of SWTBot was released last night, and there have already been about 200 downloads by the time of writing this blog post.</p>
<p>SWTBot has always believed in <a href="http://www.catb.org/~esr/writings/cathedral-bazaar/cathedral-bazaar/ar01s04.html">release early release often</a> mantra, and pushes out <a href="http://swtbot.sourceforge.net/artifacts/trunk/">nightly builds</a> out of CruiseControl. From the download stats I&#8217;m looking at, there are more downloads of the nightly build than the &#8216;stable&#8217; available on the sourceforge mirrors.</p>
<p>The highlight of the release is support for view menus and view toolbar.</p>
<p>Thanks to the contributors and adoptors, for patches, criticism, and suggestions for improvement. The release has fixed about <a href="http://swtbot.sourceforge.net/changelog.html">42 issues</a>.</p>
<p>Read more on the detailed <a href="http://swtbot.sourceforge.net/releases/1.2.0/release-notes.html">release notes</a> and the <a href="http://swtbot.sourceforge.net/changelog.html">changelog</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+1.2.0+released&amp;link=http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html&amp;notes=For%20the%20impatient%3A%0ADirect%20download%20link%3A%20https%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D622752%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASWTBot%201.2.0%20is%20the%203rd%20of%20the%201.x%20releases%20of%20SWTBot%20was%20released%20last%20night%2C%20and%20there&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+1.2.0+released&amp;link=http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html&amp;notes=For%20the%20impatient%3A%0ADirect%20download%20link%3A%20https%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D622752%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASWTBot%201.2.0%20is%20the%203rd%20of%20the%201.x%20releases%20of%20SWTBot%20was%20released%20last%20night%2C%20and%20there&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+1.2.0+released&amp;link=http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html&amp;notes=For%20the%20impatient%3A%0ADirect%20download%20link%3A%20https%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D622752%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASWTBot%201.2.0%20is%20the%203rd%20of%20the%201.x%20releases%20of%20SWTBot%20was%20released%20last%20night%2C%20and%20there&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+1.2.0+released&amp;link=http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html&amp;notes=For%20the%20impatient%3A%0ADirect%20download%20link%3A%20https%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D622752%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASWTBot%201.2.0%20is%20the%203rd%20of%20the%201.x%20releases%20of%20SWTBot%20was%20released%20last%20night%2C%20and%20there&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+1.2.0+released&amp;link=http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html&amp;notes=For%20the%20impatient%3A%0ADirect%20download%20link%3A%20https%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D622752%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASWTBot%201.2.0%20is%20the%203rd%20of%20the%201.x%20releases%20of%20SWTBot%20was%20released%20last%20night%2C%20and%20there&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/08/30/swtbot-120-released.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcing SWTBot 1.0</title>
		<link>http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html</link>
		<comments>http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html#comments</comments>
		<pubDate>Thu, 22 May 2008 13:41:17 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[functional testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/?p=230</guid>
		<description><![CDATA[I just made new release of SWTBot &#8211; 1.0 Direct download link: http://sourceforge.net/project/showfiles.php?group_id=188411&#38;package_id=220519&#38;release_id=601136 Update site: http://swtbot.sourceforge.net/latest/update-site/ Some features: A recorder API &#8212; now you can record SWTBot scripts. Still in beta though. Better SWTBot integration in eclipse &#8212; now you can run tests within eclipse. More API &#8212; now you can use more SWT controls [...]]]></description>
			<content:encoded><![CDATA[<p>I just made new release of <a href="http://swtbot.org">SWTBot</a> &#8211; 1.0</p>
<p>Direct download link: <a href="http://sourceforge.net/project/showfiles.php?group_id=188411&amp;package_id=220519&amp;release_id=601136">http://sourceforge.net/project/showfiles.php?group_id=188411&amp;package_id=220519&amp;release_id=601136</a></p>
<p>Update site: <a href="http://swtbot.sourceforge.net/latest/update-site/">http://swtbot.sourceforge.net/latest/update-site/</a></p>
<p>Some features:</p>
<ul>
<li>A recorder API &#8212; now you can record SWTBot scripts. Still in beta though.</li>
<li>Better SWTBot integration in eclipse &#8212; now you can run tests within eclipse.</li>
<li>More API &#8212; now you can use more SWT controls using an even richer API.</li>
<li>More stable than before.</li>
</ul>
<p>For more details,  you can read up on the <a href="http://swtbot.sourceforge.net/wiki/Release_Notes_-_1.0.0">release notes here.</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+1.0&amp;link=http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%201.0%0A%0ADirect%20download%20link%3A%20http%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D601136%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20script&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+1.0&amp;link=http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%201.0%0A%0ADirect%20download%20link%3A%20http%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D601136%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20script&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+1.0&amp;link=http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%201.0%0A%0ADirect%20download%20link%3A%20http%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D601136%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20script&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+1.0&amp;link=http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%201.0%0A%0ADirect%20download%20link%3A%20http%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D601136%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20script&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+1.0&amp;link=http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%201.0%0A%0ADirect%20download%20link%3A%20http%3A%2F%2Fsourceforge.net%2Fproject%2Fshowfiles.php%3Fgroup_id%3D188411%26amp%3Bpackage_id%3D220519%26amp%3Brelease_id%3D601136%0A%0AUpdate%20site%3A%20http%3A%2F%2Fswtbot.sourceforge.net%2Flatest%2Fupdate-site%2F%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20script&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/05/22/announcing-swtbot-10.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SWTBot at EclipseCon</title>
		<link>http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html</link>
		<comments>http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html#comments</comments>
		<pubDate>Thu, 20 Mar 2008 00:21:45 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[eclipsecon]]></category>
		<category><![CDATA[functional_testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html</guid>
		<description><![CDATA[It is amazing how a talk at EclipseCon can get higher visibility to an otherwise unknown and unheard of project. SWTBot.org was taking less than 10MB of web page views before, it now takes about 100MB, even before my talk is done with. I&#8217;ll let the graphs talk for themselves: Post on Google Buzz Share [...]]]></description>
			<content:encoded><![CDATA[<p>It is amazing how a talk at EclipseCon can get higher visibility to an otherwise <a href="http://swtbot.org">unknown and unheard</a> of project.</p>
<p>SWTBot.org was taking less than 10MB of web page views before, it now takes about 100MB, even before my talk is done with. I&#8217;ll let the graphs talk for themselves:</p>
<p><img src='http://ketan.padegaonkar.name/files/2008/03/swtbot-stat.jpg' alt='swtbot stats on sourceforge.net' /></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html&amp;notes=It%20is%20amazing%20how%20a%20talk%20at%20EclipseCon%20can%20get%20higher%20visibility%20to%20an%20otherwise%20unknown%20and%20unheard%20of%20project.%0A%0ASWTBot.org%20was%20taking%20less%20than%2010MB%20of%20web%20page%20views%20before%2C%20it%20now%20takes%20about%20100MB%2C%20even%20before%20my%20talk%20is%20done%20with.%20I%27ll%20let%20the%20graphs%20talk%20for%20themselves%3A%0A%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html&amp;notes=It%20is%20amazing%20how%20a%20talk%20at%20EclipseCon%20can%20get%20higher%20visibility%20to%20an%20otherwise%20unknown%20and%20unheard%20of%20project.%0A%0ASWTBot.org%20was%20taking%20less%20than%2010MB%20of%20web%20page%20views%20before%2C%20it%20now%20takes%20about%20100MB%2C%20even%20before%20my%20talk%20is%20done%20with.%20I%27ll%20let%20the%20graphs%20talk%20for%20themselves%3A%0A%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html&amp;notes=It%20is%20amazing%20how%20a%20talk%20at%20EclipseCon%20can%20get%20higher%20visibility%20to%20an%20otherwise%20unknown%20and%20unheard%20of%20project.%0A%0ASWTBot.org%20was%20taking%20less%20than%2010MB%20of%20web%20page%20views%20before%2C%20it%20now%20takes%20about%20100MB%2C%20even%20before%20my%20talk%20is%20done%20with.%20I%27ll%20let%20the%20graphs%20talk%20for%20themselves%3A%0A%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html&amp;notes=It%20is%20amazing%20how%20a%20talk%20at%20EclipseCon%20can%20get%20higher%20visibility%20to%20an%20otherwise%20unknown%20and%20unheard%20of%20project.%0A%0ASWTBot.org%20was%20taking%20less%20than%2010MB%20of%20web%20page%20views%20before%2C%20it%20now%20takes%20about%20100MB%2C%20even%20before%20my%20talk%20is%20done%20with.%20I%27ll%20let%20the%20graphs%20talk%20for%20themselves%3A%0A%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html&amp;notes=It%20is%20amazing%20how%20a%20talk%20at%20EclipseCon%20can%20get%20higher%20visibility%20to%20an%20otherwise%20unknown%20and%20unheard%20of%20project.%0A%0ASWTBot.org%20was%20taking%20less%20than%2010MB%20of%20web%20page%20views%20before%2C%20it%20now%20takes%20about%20100MB%2C%20even%20before%20my%20talk%20is%20done%20with.%20I%27ll%20let%20the%20graphs%20talk%20for%20themselves%3A%0A%0A&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/03/20/swtbot-at-eclipsecon-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWTBot at EclipseCon</title>
		<link>http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html</link>
		<comments>http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html#comments</comments>
		<pubDate>Wed, 19 Mar 2008 00:07:10 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[eclipsecon]]></category>
		<category><![CDATA[functional_testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html</guid>
		<description><![CDATA[I&#8217;m sitting here at EclipseCon, and the coolest thing about this is getting to meet a lot of interesting people around. A few folks spoke to me about SWTBot, and asked for a few feature requests. I promptly added those, and checked them into SVN, and my CruiseControl instance at ThoughtWorks says green. Hurray yet [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sitting here at EclipseCon, and the coolest thing about this is getting to meet a lot of interesting people around.</p>
<p>A few folks spoke to me about <a href="http://swtbot.org">SWTBot</a>, and asked for a few feature requests. I promptly added those, and checked them into SVN, and my CruiseControl instance at ThoughtWorks says green. Hurray yet another build that can be pushed into production.</p>
<p>Catch hold of me if you are interested in knowing more about <a href="http://swtbot.org">SWTBot</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html&amp;notes=I%27m%20sitting%20here%20at%20EclipseCon%2C%20and%20the%20coolest%20thing%20about%20this%20is%20getting%20to%20meet%20a%20lot%20of%20interesting%20people%20around.%0A%0AA%20few%20folks%20spoke%20to%20me%20about%20SWTBot%2C%20and%20asked%20for%20a%20few%20feature%20requests.%20I%20promptly%20added%20those%2C%20and%20checked%20them%20into%20SVN%2C%20and%20my%20CruiseControl%20instance%20at%20ThoughtWorks%20says%20g&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html&amp;notes=I%27m%20sitting%20here%20at%20EclipseCon%2C%20and%20the%20coolest%20thing%20about%20this%20is%20getting%20to%20meet%20a%20lot%20of%20interesting%20people%20around.%0A%0AA%20few%20folks%20spoke%20to%20me%20about%20SWTBot%2C%20and%20asked%20for%20a%20few%20feature%20requests.%20I%20promptly%20added%20those%2C%20and%20checked%20them%20into%20SVN%2C%20and%20my%20CruiseControl%20instance%20at%20ThoughtWorks%20says%20g&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html&amp;notes=I%27m%20sitting%20here%20at%20EclipseCon%2C%20and%20the%20coolest%20thing%20about%20this%20is%20getting%20to%20meet%20a%20lot%20of%20interesting%20people%20around.%0A%0AA%20few%20folks%20spoke%20to%20me%20about%20SWTBot%2C%20and%20asked%20for%20a%20few%20feature%20requests.%20I%20promptly%20added%20those%2C%20and%20checked%20them%20into%20SVN%2C%20and%20my%20CruiseControl%20instance%20at%20ThoughtWorks%20says%20g&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html&amp;notes=I%27m%20sitting%20here%20at%20EclipseCon%2C%20and%20the%20coolest%20thing%20about%20this%20is%20getting%20to%20meet%20a%20lot%20of%20interesting%20people%20around.%0A%0AA%20few%20folks%20spoke%20to%20me%20about%20SWTBot%2C%20and%20asked%20for%20a%20few%20feature%20requests.%20I%20promptly%20added%20those%2C%20and%20checked%20them%20into%20SVN%2C%20and%20my%20CruiseControl%20instance%20at%20ThoughtWorks%20says%20g&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=SWTBot+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html&amp;notes=I%27m%20sitting%20here%20at%20EclipseCon%2C%20and%20the%20coolest%20thing%20about%20this%20is%20getting%20to%20meet%20a%20lot%20of%20interesting%20people%20around.%0A%0AA%20few%20folks%20spoke%20to%20me%20about%20SWTBot%2C%20and%20asked%20for%20a%20few%20feature%20requests.%20I%20promptly%20added%20those%2C%20and%20checked%20them%20into%20SVN%2C%20and%20my%20CruiseControl%20instance%20at%20ThoughtWorks%20says%20g&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/03/19/swtbot-at-eclipsecon.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing SWTBot 0.2</title>
		<link>http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html</link>
		<comments>http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html#comments</comments>
		<pubDate>Sat, 01 Mar 2008 15:11:52 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[functional testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html</guid>
		<description><![CDATA[I just made new release of SWTBot &#8211; 0.2.0. Some features: A recorder API &#8212; now you can record SWTBot scripts. Better SWTBot integration in eclipse &#8212; now you can run tests within eclipse. More API &#8212; now you can use more SWT controls using an even richer API. For more details, you can read [...]]]></description>
			<content:encoded><![CDATA[<p>I just made new release of SWTBot &#8211; 0.2.0.</p>
<p>Some features:</p>
<ul>
<li>A recorder API &#8212; now you can record SWTBot scripts.</li>
<li>Better SWTBot integration in eclipse &#8212; now you can run tests within eclipse.</li>
<li>More API &#8212; now you can use more SWT controls using an even richer API.</li>
</ul>
<p>For more details,  you can read up on the <a href="http://swtbot.sourceforge.net/wiki/Release_Notes_-_0.2.0-beta">release notes here.</a></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.2&amp;link=http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%200.2.0.%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20scripts.%0A%09Better%20SWTBot%20integration%20in%20eclipse%20--%20now%20you%20can%20run%20tests%20within%20eclipse.%0A%09More%20API%20--%20now%20you%20can%20use%20more%20SWT%20controls%20using%20an%20even%20richer%20API.%0A%0A%0AFor%20more%20details%2C%20%20you%20can%20read%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.2&amp;link=http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%200.2.0.%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20scripts.%0A%09Better%20SWTBot%20integration%20in%20eclipse%20--%20now%20you%20can%20run%20tests%20within%20eclipse.%0A%09More%20API%20--%20now%20you%20can%20use%20more%20SWT%20controls%20using%20an%20even%20richer%20API.%0A%0A%0AFor%20more%20details%2C%20%20you%20can%20read%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.2&amp;link=http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%200.2.0.%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20scripts.%0A%09Better%20SWTBot%20integration%20in%20eclipse%20--%20now%20you%20can%20run%20tests%20within%20eclipse.%0A%09More%20API%20--%20now%20you%20can%20use%20more%20SWT%20controls%20using%20an%20even%20richer%20API.%0A%0A%0AFor%20more%20details%2C%20%20you%20can%20read%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.2&amp;link=http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%200.2.0.%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20scripts.%0A%09Better%20SWTBot%20integration%20in%20eclipse%20--%20now%20you%20can%20run%20tests%20within%20eclipse.%0A%09More%20API%20--%20now%20you%20can%20use%20more%20SWT%20controls%20using%20an%20even%20richer%20API.%0A%0A%0AFor%20more%20details%2C%20%20you%20can%20read%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.2&amp;link=http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html&amp;notes=I%20just%20made%20new%20release%20of%20SWTBot%20-%200.2.0.%0A%0ASome%20features%3A%0A%0A%09A%20recorder%20API%20--%20now%20you%20can%20record%20SWTBot%20scripts.%0A%09Better%20SWTBot%20integration%20in%20eclipse%20--%20now%20you%20can%20run%20tests%20within%20eclipse.%0A%09More%20API%20--%20now%20you%20can%20use%20more%20SWT%20controls%20using%20an%20even%20richer%20API.%0A%0A%0AFor%20more%20details%2C%20%20you%20can%20read%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/03/01/announcing-swtbot-02.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>I&#039;m speaking at EclipseCon</title>
		<link>http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html</link>
		<comments>http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html#comments</comments>
		<pubDate>Mon, 28 Jan 2008 08:30:21 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[eclipsecon]]></category>
		<category><![CDATA[functional_testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html</guid>
		<description><![CDATA[I&#8217;ve held back on this post for quite a while now my visa was pending all this while, now that that&#8217;s out of the way &#8211; I&#8217;ll be speaking at EclipseCon about SWT/Eclipse testing, and lessons learnt along the way. The lack of a good functional testing tool about a year ago, and given that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve held back on this post for quite a while now <img src='http://ketan.padegaonkar.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  my visa was pending all this while, now that that&#8217;s out of the way &#8211;</p>
<p>I&#8217;ll be speaking at EclipseCon about <a href="http://www.eclipsecon.org/2008/?page=sub/&amp;id=254">SWT/Eclipse testing, and lessons learnt along the way</a>.</p>
<p>The lack of a good functional testing tool about a year ago, and given that there&#8217;s no problem in &#8216;<em>writing yet another calculator</em>&#8216; I decided to roll out my own over a few weekends <img src='http://ketan.padegaonkar.name/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://swtbot.sourceforge.net/">SWTBot</a> is a functional testing tool for SWT applications, that also works for eclipse plugins, and work is still underway. I would be talking about my experiences in dealing with the various functional testing tools, the various pain points of functional testing for SWT and where <a href="http://swtbot.sourceforge.net/">SWTBot</a> compares to these.</p>
<p>See you at <a href="http://www.eclipsecon.org/2008/?page=sub/&amp;id=254">EclipseCon</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=I%26%2339%3Bm+speaking+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html&amp;notes=I%27ve%20held%20back%20on%20this%20post%20for%20quite%20a%20while%20now%20%3A%29%20my%20visa%20was%20pending%20all%20this%20while%2C%20now%20that%20that%27s%20out%20of%20the%20way%20--%0A%0AI%27ll%20be%20speaking%20at%20EclipseCon%20about%20SWT%2FEclipse%20testing%2C%20and%20lessons%20learnt%20along%20the%20way.%0A%0AThe%20lack%20of%20a%20good%20functional%20testing%20tool%20about%20a%20year%20ago%2C%20and%20given%20that%20there%27s&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=I%26%2339%3Bm+speaking+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html&amp;notes=I%27ve%20held%20back%20on%20this%20post%20for%20quite%20a%20while%20now%20%3A%29%20my%20visa%20was%20pending%20all%20this%20while%2C%20now%20that%20that%27s%20out%20of%20the%20way%20--%0A%0AI%27ll%20be%20speaking%20at%20EclipseCon%20about%20SWT%2FEclipse%20testing%2C%20and%20lessons%20learnt%20along%20the%20way.%0A%0AThe%20lack%20of%20a%20good%20functional%20testing%20tool%20about%20a%20year%20ago%2C%20and%20given%20that%20there%27s&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=I%26%2339%3Bm+speaking+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html&amp;notes=I%27ve%20held%20back%20on%20this%20post%20for%20quite%20a%20while%20now%20%3A%29%20my%20visa%20was%20pending%20all%20this%20while%2C%20now%20that%20that%27s%20out%20of%20the%20way%20--%0A%0AI%27ll%20be%20speaking%20at%20EclipseCon%20about%20SWT%2FEclipse%20testing%2C%20and%20lessons%20learnt%20along%20the%20way.%0A%0AThe%20lack%20of%20a%20good%20functional%20testing%20tool%20about%20a%20year%20ago%2C%20and%20given%20that%20there%27s&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=I%26%2339%3Bm+speaking+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html&amp;notes=I%27ve%20held%20back%20on%20this%20post%20for%20quite%20a%20while%20now%20%3A%29%20my%20visa%20was%20pending%20all%20this%20while%2C%20now%20that%20that%27s%20out%20of%20the%20way%20--%0A%0AI%27ll%20be%20speaking%20at%20EclipseCon%20about%20SWT%2FEclipse%20testing%2C%20and%20lessons%20learnt%20along%20the%20way.%0A%0AThe%20lack%20of%20a%20good%20functional%20testing%20tool%20about%20a%20year%20ago%2C%20and%20given%20that%20there%27s&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=I%26%2339%3Bm+speaking+at+EclipseCon&amp;link=http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html&amp;notes=I%27ve%20held%20back%20on%20this%20post%20for%20quite%20a%20while%20now%20%3A%29%20my%20visa%20was%20pending%20all%20this%20while%2C%20now%20that%20that%27s%20out%20of%20the%20way%20--%0A%0AI%27ll%20be%20speaking%20at%20EclipseCon%20about%20SWT%2FEclipse%20testing%2C%20and%20lessons%20learnt%20along%20the%20way.%0A%0AThe%20lack%20of%20a%20good%20functional%20testing%20tool%20about%20a%20year%20ago%2C%20and%20given%20that%20there%27s&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2008/01/28/im-speaking-at-eclipsecon.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Controller Testing in Active Scaffold</title>
		<link>http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html</link>
		<comments>http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html#comments</comments>
		<pubDate>Thu, 27 Dec 2007 18:10:44 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[active scaffold]]></category>
		<category><![CDATA[testing]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html</guid>
		<description><![CDATA[I just started my adventure with rails a few nights ago. Figured that Active Scaffold based controllers do something that is different from the default controllers generated by the scaffold generator. For one all controller tests broke when I moved to active scaffold. Here&#8217;s a blog post that talks about testing active scaffold based controllers. [...]]]></description>
			<content:encoded><![CDATA[<p>I just started my adventure with rails a few nights ago. Figured that <a href="http://activescaffold.com">Active Scaffold</a> based controllers do something that is different from the default controllers generated by the scaffold generator.</p>
<p>For one all controller tests broke when I moved to active scaffold. Here&#8217;s a <a href="http://www.42.mach7x.com/2007/11/08/controller-testing-in-active-scaffold/">blog post</a> that talks about testing active scaffold based controllers.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Controller+Testing+in+Active+Scaffold&amp;link=http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html&amp;notes=I%20just%20started%20my%20adventure%20with%20rails%20a%20few%20nights%20ago.%20Figured%20that%20Active%20Scaffold%20based%20controllers%20do%20something%20that%20is%20different%20from%20the%20default%20controllers%20generated%20by%20the%20scaffold%20generator.%0A%0AFor%20one%20all%20controller%20tests%20broke%20when%20I%20moved%20to%20active%20scaffold.%20Here%27s%20a%20blog%20post%20that%20talks%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Controller+Testing+in+Active+Scaffold&amp;link=http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html&amp;notes=I%20just%20started%20my%20adventure%20with%20rails%20a%20few%20nights%20ago.%20Figured%20that%20Active%20Scaffold%20based%20controllers%20do%20something%20that%20is%20different%20from%20the%20default%20controllers%20generated%20by%20the%20scaffold%20generator.%0A%0AFor%20one%20all%20controller%20tests%20broke%20when%20I%20moved%20to%20active%20scaffold.%20Here%27s%20a%20blog%20post%20that%20talks%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Controller+Testing+in+Active+Scaffold&amp;link=http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html&amp;notes=I%20just%20started%20my%20adventure%20with%20rails%20a%20few%20nights%20ago.%20Figured%20that%20Active%20Scaffold%20based%20controllers%20do%20something%20that%20is%20different%20from%20the%20default%20controllers%20generated%20by%20the%20scaffold%20generator.%0A%0AFor%20one%20all%20controller%20tests%20broke%20when%20I%20moved%20to%20active%20scaffold.%20Here%27s%20a%20blog%20post%20that%20talks%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Controller+Testing+in+Active+Scaffold&amp;link=http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html&amp;notes=I%20just%20started%20my%20adventure%20with%20rails%20a%20few%20nights%20ago.%20Figured%20that%20Active%20Scaffold%20based%20controllers%20do%20something%20that%20is%20different%20from%20the%20default%20controllers%20generated%20by%20the%20scaffold%20generator.%0A%0AFor%20one%20all%20controller%20tests%20broke%20when%20I%20moved%20to%20active%20scaffold.%20Here%27s%20a%20blog%20post%20that%20talks%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Controller+Testing+in+Active+Scaffold&amp;link=http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html&amp;notes=I%20just%20started%20my%20adventure%20with%20rails%20a%20few%20nights%20ago.%20Figured%20that%20Active%20Scaffold%20based%20controllers%20do%20something%20that%20is%20different%20from%20the%20default%20controllers%20generated%20by%20the%20scaffold%20generator.%0A%0AFor%20one%20all%20controller%20tests%20broke%20when%20I%20moved%20to%20active%20scaffold.%20Here%27s%20a%20blog%20post%20that%20talks%20&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/12/27/controller-testing-in-active-scaffold.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Announcing SWTBot 0.1</title>
		<link>http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html</link>
		<comments>http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html#comments</comments>
		<pubDate>Tue, 18 Dec 2007 15:46:13 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[functional testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html</guid>
		<description><![CDATA[I&#8217;d like to announce SWTBot a functional testing tool for SWT. Here is a quick list of features supported by SWTBot. Here is a link to some sample code and screencasts Post on Google Buzz Share this on Reddit Tweet This! Share this on Facebook Add this to DZone Get Shareaholic]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d like to announce <a href="http://swtbot.org">SWTBot</a> a functional testing tool for SWT.</p>
<p>Here is a quick list of <a href="http://swtbot.sourceforge.net/w/index.php?title=Features&amp;oldid=1381">features</a> supported by SWTBot.</p>
<p>Here is a <a href="https://swtbot.svn.sourceforge.net/svnroot/swtbot/tags/0.1.0-alpha/net.sf.swtbot.finder.test/src/net/sf/swtbot/widgets/">link</a> to some <a href="https://swtbot.svn.sourceforge.net/svnroot/swtbot/tags/0.1.0-alpha/net.sf.swtbot.demo/src/net/sf/swtbot/demo/SWTBotDemo.java">sample code</a> and <a href="http://swtbot.sourceforge.net/wiki/Screencasts">screencasts</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.1&amp;link=http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html&amp;notes=I%27d%20like%20to%20announce%20SWTBot%20a%20functional%20testing%20tool%20for%20SWT.%0A%0AHere%20is%20a%20quick%20list%20of%20features%20supported%20by%20SWTBot.%0A%0AHere%20is%20a%20link%20to%20some%20sample%20code%20and%20screencasts&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.1&amp;link=http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html&amp;notes=I%27d%20like%20to%20announce%20SWTBot%20a%20functional%20testing%20tool%20for%20SWT.%0A%0AHere%20is%20a%20quick%20list%20of%20features%20supported%20by%20SWTBot.%0A%0AHere%20is%20a%20link%20to%20some%20sample%20code%20and%20screencasts&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.1&amp;link=http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html&amp;notes=I%27d%20like%20to%20announce%20SWTBot%20a%20functional%20testing%20tool%20for%20SWT.%0A%0AHere%20is%20a%20quick%20list%20of%20features%20supported%20by%20SWTBot.%0A%0AHere%20is%20a%20link%20to%20some%20sample%20code%20and%20screencasts&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.1&amp;link=http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html&amp;notes=I%27d%20like%20to%20announce%20SWTBot%20a%20functional%20testing%20tool%20for%20SWT.%0A%0AHere%20is%20a%20quick%20list%20of%20features%20supported%20by%20SWTBot.%0A%0AHere%20is%20a%20link%20to%20some%20sample%20code%20and%20screencasts&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Announcing+SWTBot+0.1&amp;link=http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html&amp;notes=I%27d%20like%20to%20announce%20SWTBot%20a%20functional%20testing%20tool%20for%20SWT.%0A%0AHere%20is%20a%20quick%20list%20of%20features%20supported%20by%20SWTBot.%0A%0AHere%20is%20a%20link%20to%20some%20sample%20code%20and%20screencasts&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/12/18/announcing-swtbot-01.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Another sneak preview into SWTBot</title>
		<link>http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html</link>
		<comments>http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html#comments</comments>
		<pubDate>Wed, 14 Nov 2007 10:46:36 +0000</pubDate>
		<dc:creator>Ketan</dc:creator>
				<category><![CDATA[eclipse]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Recommeded tools]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[functional testing]]></category>
		<category><![CDATA[swt]]></category>
		<category><![CDATA[swtbot]]></category>

		<guid isPermaLink="false">http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html</guid>
		<description><![CDATA[Here&#8217;s yet another sneak preview into SWTBot. This time SWTBot makes a profound statement &#8220;Hello World&#8220;, to demonstrate what SWTBot is able to do. Click here to view full screen. SWTBot also runs on Linux, although the screencasts are all recorded in Windows. Click here, in case you wish to look at the script that [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s yet another <a href="http://ketan.padegaonkar.name/2007/11/03/a-sneak-preview-into-swtbot.html">sneak preview into SWTBot</a>.</p>
<p>This time SWTBot makes a profound statement &#8220;<a href="http://www.gnu.org/fun/jokes/helloworld.html">Hello World</a>&#8220;, to demonstrate what SWTBot is able to do. <a href="http://swtbot.sourceforge.net/screencasts/SWTBotEclipseHelloWorld-FullScreen.html">Click here</a> to view full screen.</p>
<p><a href="http://swtbot.sourceforge.net">SWTBot</a> also runs on Linux, although the screencasts are all recorded in Windows. <a href="http://swtbot.svn.sourceforge.net/viewvc/swtbot/trunk/net.sf.swtbot.eclipse.spy/src/net/sf/swtbot/eclipse/spy/PlayBackThread.java?revision=142&amp;view=markup">Click here</a>, in case you wish to look at the script that executes this.</p>
<p>This preview was created using <a href="http://www.debugmode.com/wink/">Wink</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center">
<ul class="socials">
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Another+sneak+preview+into+SWTBot&amp;link=http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html&amp;notes=Here%27s%20yet%20another%20sneak%20preview%20into%20SWTBot.%0A%0AThis%20time%20SWTBot%20makes%20a%20profound%20statement%20%22Hello%20World%22%2C%20to%20demonstrate%20what%20SWTBot%20is%20able%20to%20do.%20Click%20here%20to%20view%20full%20screen.%0A%0ASWTBot%20also%20runs%20on%20Linux%2C%20although%20the%20screencasts%20are%20all%20recorded%20in%20Windows.%20Click%20here%2C%20in%20case%20you%20wish%20to%20look%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Another+sneak+preview+into+SWTBot&amp;link=http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html&amp;notes=Here%27s%20yet%20another%20sneak%20preview%20into%20SWTBot.%0A%0AThis%20time%20SWTBot%20makes%20a%20profound%20statement%20%22Hello%20World%22%2C%20to%20demonstrate%20what%20SWTBot%20is%20able%20to%20do.%20Click%20here%20to%20view%20full%20screen.%0A%0ASWTBot%20also%20runs%20on%20Linux%2C%20although%20the%20screencasts%20are%20all%20recorded%20in%20Windows.%20Click%20here%2C%20in%20case%20you%20wish%20to%20look%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Another+sneak+preview+into+SWTBot&amp;link=http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html&amp;notes=Here%27s%20yet%20another%20sneak%20preview%20into%20SWTBot.%0A%0AThis%20time%20SWTBot%20makes%20a%20profound%20statement%20%22Hello%20World%22%2C%20to%20demonstrate%20what%20SWTBot%20is%20able%20to%20do.%20Click%20here%20to%20view%20full%20screen.%0A%0ASWTBot%20also%20runs%20on%20Linux%2C%20although%20the%20screencasts%20are%20all%20recorded%20in%20Windows.%20Click%20here%2C%20in%20case%20you%20wish%20to%20look%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=RT+%40ketanpkr+%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.shareaholic.com/api/share/?title=Another+sneak+preview+into+SWTBot&amp;link=http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html&amp;notes=Here%27s%20yet%20another%20sneak%20preview%20into%20SWTBot.%0A%0AThis%20time%20SWTBot%20makes%20a%20profound%20statement%20%22Hello%20World%22%2C%20to%20demonstrate%20what%20SWTBot%20is%20able%20to%20do.%20Click%20here%20to%20view%20full%20screen.%0A%0ASWTBot%20also%20runs%20on%20Linux%2C%20although%20the%20screencasts%20are%20all%20recorded%20in%20Windows.%20Click%20here%2C%20in%20case%20you%20wish%20to%20look%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=5&amp;tags=&amp;ctype=" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.shareaholic.com/api/share/?title=Another+sneak+preview+into+SWTBot&amp;link=http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html&amp;notes=Here%27s%20yet%20another%20sneak%20preview%20into%20SWTBot.%0A%0AThis%20time%20SWTBot%20makes%20a%20profound%20statement%20%22Hello%20World%22%2C%20to%20demonstrate%20what%20SWTBot%20is%20able%20to%20do.%20Click%20here%20to%20view%20full%20screen.%0A%0ASWTBot%20also%20runs%20on%20Linux%2C%20although%20the%20screencasts%20are%20all%20recorded%20in%20Windows.%20Click%20here%2C%20in%20case%20you%20wish%20to%20look%20a&amp;short_link=&amp;shortener=bitly&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=102&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ketan.padegaonkar.name/2007/11/14/another-sneak-preview-into-swtbot.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

