<?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>Python, Selenium and... Zombies.</title>
	<atom:link href="http://antlong.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antlong.com</link>
	<description>Tips and Tweaks for Selenium, Python, Performance Testing.</description>
	<lastBuildDate>Wed, 03 Feb 2010 05:53:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Beginner&#8217;s Ruby / Database Tutorial</title>
		<link>http://antlong.com/beginners-ruby-database-tutorial/</link>
		<comments>http://antlong.com/beginners-ruby-database-tutorial/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 05:53:30 +0000</pubDate>
		<dc:creator>Anthony Long</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://antlong.com/?p=60</guid>
		<description><![CDATA[Ruby Database Access
• DBI stands for Database independent interface for Ruby
• DBI provides an abstraction layer between the Ruby code and the underlying database.
• You can use databases like Oracle, SQL Server and MySQL.
• DBI defines set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used.
• [...]]]></description>
			<content:encoded><![CDATA[<p>Ruby Database Access</p>
<p>• DBI stands for Database independent interface for Ruby<br />
• DBI provides an abstraction layer between the Ruby code and the underlying database.<br />
• You can use databases like Oracle, SQL Server and MySQL.<br />
• DBI defines set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used.<br />
• From cmd (or terminal)<br />
–  sudo gem install dbi<br />
• This will install the DBI module</p>
<p><span id="more-60"></span>MySQL driver installation<br />
• Ruby DBI uses two layers<br />
– The database interface layer<br />
• Database independent layer<br />
– The database driver layer<br />
• Database dependent layer<br />
• Install MySQL database driver<br />
– gem install dbd-mysql (Ignore any Documentation errors)</p>
<p>Initialization:</p>
<p>require &#8220;mysql&#8221;<br />
Connect to<br />
mysql = Mysql.init()<br />
database<br />
mysql.connect(&#8216;localhost&#8217;,'root&#8217;,'port&#8217;)<br />
mysql.select_db(&#8216;qa_Info&#8217;)</p>
<p>Next,</p>
<p>Define the table fields using Ruby Access Database:</p>
<p>mysql.query(&#8220;CREATE TABLE<br />
Execute Query to<br />
`qa_info`.`test_results` (`test_id` INTEGER  create a table<br />
UNSIGNED NOT NULL AUTO_INCREMENT,<br />
`result` VARCHAR(45) NOT NULL,<br />
`total_Time` INTEGER(4) UNSIGNED NOT<br />
NULL, `total_test_num` INTEGER(4)<br />
Select the<br />
UNSIGNED NOT NULL,  `test_pass_num`  database Schema<br />
INTEGER(4) UNSIGNED NOT NULL,<br />
`command_pass_num` INTEGER(4)<br />
UNSIGNED NOT NULL, `command_fail_num`<br />
INTEGER(4) UNSIGNED NOT NULL,<br />
`command_error_num` INTEGER(4)<br />
UNSIGNED NOT NULL, PRIMARY KEY<br />
(`test_id`) )&#8221;)</p>
<p>Still with me?</p>
<p>Let&#8217;s insert a few rows to begin.</p>
<p>mysql.query(&#8216;insert into test_results<br />
values(1,&#8221;passed&#8221;,73,2,2,0,5,0)&#8217;)<br />
mysql.query(&#8216;insert into test_results<br />
values(2,&#8221;failed&#8221;,73,2,2,0,5,0)&#8217;)<br />
mysql.query(&#8216;insert into test_results<br />
values(3,&#8221;failed&#8221;,73,2,2,0,5,0)&#8217;)</p>
<p>res = mysql.query(&#8220;select test_id,result<br />
from test_results&#8221;)</p>
<p>Now, Let&#8217;s make an array.</p>
<p>while row = res.fetch_hash do<br />
printf &#8220;%s, %s\n&#8221;, row["test_id"],<br />
row["result"]<br />
end<br />
puts &#8220;Number of rows returned:<br />
#{res.num_rows}&#8221;<br />
res.free<br />
mysql.close()</p>
<p>Finally, Execute Result_table.rb to see the results.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial&amp;desc=Ruby%20Database%20Access%0D%0A%0D%0A%E2%80%A2%20DBI%20stands%20for%20Database%20independent%20interface%20for%20Ruby%0D%0A%E2%80%A2%20DBI%20provides%20an%20abstraction%20layer%20between%20the%20Ruby%20code%20and%20the%20underlying%20database.%0D%0A%E2%80%A2%20You%20can%20use%20databases%20like%20Oracle%2C%20SQL%20Server%20and%20MySQL.%0D%0A%E2%80%A2%20DBI%20defines%20set%20of%20methods%2C%20variables%2C%20and%20conventions%20that%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://antlong.com/beginners-ruby-database-tutorial/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://antlong.com/beginners-ruby-database-tutorial/&amp;title=Beginner%27s+Ruby+%2F+Database+Tutorial" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Beginner%27s+Ruby+%2F+Database+Tutorial+-+http://b2l.me/febzs+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://antlong.com/beginners-ruby-database-tutorial/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://antlong.com/beginners-ruby-database-tutorial/&amp;bm_description=Beginner%27s+Ruby+%2F+Database+Tutorial&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://antlong.com/beginners-ruby-database-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing TextMate&#8217;s Default Language</title>
		<link>http://antlong.com/changing-textmates-default-language/</link>
		<comments>http://antlong.com/changing-textmates-default-language/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 15:32:04 +0000</pubDate>
		<dc:creator>Anthony Long</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://antlong.com/?p=57</guid>
		<description><![CDATA[Changing TextMates default language can save you a lot of time. To change yours to Python, do this in terminal while TextMate is closed.
Python:
defaults write com.macromates.textmate OakDefaultLanguage F23DB5B2-7D08-11D9-A709-000D93B6E43C





		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Post this on Diigo
		
		
			Share this on Reddit
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Mixx
		
		
			Tweet This!
		
		
			Subscribe to the comments [...]]]></description>
			<content:encoded><![CDATA[<p>Changing TextMates default language can save you a lot of time. To change yours to Python, do this in terminal while TextMate is closed.</p>
<p><span id="more-57"></span>Python:</p>
<p>defaults write com.macromates.textmate OakDefaultLanguage F23DB5B2-7D08-11D9-A709-000D93B6E43C</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language&amp;desc=Changing%20TextMates%20default%20language%20can%20save%20you%20a%20lot%20of%20time.%20To%20change%20yours%20to%20Python%2C%20do%20this%20in%20terminal%20while%20TextMate%20is%20closed.%0D%0A%0D%0APython%3A%0D%0A%0D%0Adefaults%20write%20com.macromates.textmate%20OakDefaultLanguage%20F23DB5B2-7D08-11D9-A709-000D93B6E43C" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://antlong.com/changing-textmates-default-language/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://antlong.com/changing-textmates-default-language/&amp;title=Changing+TextMate%27s+Default+Language" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Changing+TextMate%27s+Default+Language+-+http://b2l.me/enqj5+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://antlong.com/changing-textmates-default-language/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://antlong.com/changing-textmates-default-language/&amp;bm_description=Changing+TextMate%27s+Default+Language&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://antlong.com/changing-textmates-default-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling Firefox&#8217;s Update Checks</title>
		<link>http://antlong.com/disabling-firefoxs-update-checks/</link>
		<comments>http://antlong.com/disabling-firefoxs-update-checks/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:16:04 +0000</pubDate>
		<dc:creator>Anthony Long</dc:creator>
				<category><![CDATA[QA]]></category>
		<category><![CDATA[Selenium]]></category>
		<category><![CDATA[Selenium Server]]></category>

		<guid isPermaLink="false">http://antlong.com/?p=39</guid>
		<description><![CDATA[I&#8217;ve had a problem with Selenium&#8217;s custom profiles for a while so I settled using the fresh instance Selenium creates when it opens. I also spent quite a bit of time over the course of the past few Firefox releases figuring out how to disable the various popups and such that open when your fresh [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had a problem with Selenium&#8217;s custom profiles for a while so I settled using the fresh instance Selenium creates when it opens. I also spent quite a bit of time over the course of the past few Firefox releases figuring out how to disable the various popups and such that open when your fresh instance loads. As of Firefox 3.5.x to disable the automatic addon update checking, add these two lines to your user.js file (inside &lt;randomstring&gt;.default)</p>
<p><span id="more-39"></span>user_pref(&#8220;extensions.checkCompatibility&#8221;, false);<br />
user_pref(&#8220;extensions.checkUpdateSecurity&#8221;, false);</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks&amp;desc=I%27ve%20had%20a%20problem%20with%20Selenium%27s%20custom%20profiles%20for%20a%20while%20so%20I%20settled%20using%20the%20fresh%20instance%20Selenium%20creates%20when%20it%20opens.%20I%20also%20spent%20quite%20a%20bit%20of%20time%20over%20the%20course%20of%20the%20past%20few%20Firefox%20releases%20figuring%20out%20how%20to%20disable%20the%20various%20popups%20and%20such%20that%20open%20when%20your%20fresh%20ins" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://antlong.com/disabling-firefoxs-update-checks/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://antlong.com/disabling-firefoxs-update-checks/&amp;title=Disabling+Firefox%27s+Update+Checks" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Disabling+Firefox%27s+Update+Checks+-+http://b2l.me/c8zzb+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://antlong.com/disabling-firefoxs-update-checks/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://antlong.com/disabling-firefoxs-update-checks/&amp;bm_description=Disabling+Firefox%27s+Update+Checks&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://antlong.com/disabling-firefoxs-update-checks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selenium and TinyMCE</title>
		<link>http://antlong.com/selenium-and-tinymce/</link>
		<comments>http://antlong.com/selenium-and-tinymce/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 22:51:50 +0000</pubDate>
		<dc:creator>Anthony Long</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[QA]]></category>
		<category><![CDATA[Selenium]]></category>

		<guid isPermaLink="false">http://antlong.com/?p=30</guid>
		<description><![CDATA[For many projects, my shop uses TinyMCE for a quick and feature rich WYSIWYG editor. While its simple to implement, it can be awful to automate. Using Selenium type, click, click_at, etc will not work (I suspect because the editor is technically external from the page were testing, see below).
Initially my problem was that I [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">For many projects, my shop uses <strong>TinyMCE</strong> for a quick and feature rich WYSIWYG editor. While its simple to implement, it can be awful to automate. Using Selenium type, click, click_at, etc will not work (I suspect because the editor is technically external from the page were testing, see below).</p>
<p style="text-align: justify;">Initially my problem was that I did not allow enough for the page to load before using JS to enter info in to the box. To rectify this, I used time.sleep(5).</p>
<p style="text-align: justify;">Next the issue arose that enterring characters via JS did not register with the character counting mechanism. Since i&#8217;m on a time based budget, I can&#8217;t spend too much time on this but I figure using os (python) or keypress/keydown in JS will do the trick.</p>
<p style="text-align: justify;">This is the code to use when encountering a <strong>TinyMCE</strong> box.</p>
<p style="text-align: justify;"><span id="more-30"></span></p>
<p style="text-align: justify;">First use <strong>mceFocus </strong>to get the id of the text field you wish to alter, in this case<em> id=”body”</em>:</p>
<div style="text-align: justify;">
<div>
<p>tinyMCE.execCommand(&#8216;mceFocus&#8217;,false,&#8217;body&#8217;);<br />
(In my experience the text area will appear as light gray [hidden] in firebug.)</p>
</div>
</div>
<p style="text-align: justify;">Next, set the text by using <strong>mceInsertContent</strong>:</p>
<div style="text-align: justify;">
<div>
<p>tinyMCE.execCommand(&#8220;mceInsertContent&#8221;, false, &#8220;body text&#8221;);<br />
(This will enter your string, but be cautious, enforced character limits will<br />
not allow this will complain).</p>
</div>
</div>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>In Selenium IDE:</strong></p>
<div style="text-align: justify;">
<div>
<p>tinyMCE.execCommand(&#8216;mceFocus&#8217;,false,&#8217;body&#8217;);tinyMCE.execCommand(&#8220;mceInsertContent&#8221;, false, &#8220;body text&#8221;);</p>
</div>
</div>
<p style="text-align: justify;">So ‘body text’ will be inserted into the textarea with id ‘body’.</p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>In Python:</strong></p>
<p style="text-align: justify;">sel.run_script(&#8220;tinyMCE.execCommand(&#8216;mceFocus&#8217;,false,&#8217;body&#8217;);tinyMCE.execCommand(&#8216;mceInsertContent&#8217;, false, &#8216;body text&#8217;);&#8221;)</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring">
<ul class="socials">
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE&amp;desc=For%20many%20projects%2C%20my%20shop%20uses%20TinyMCE%20for%20a%20quick%20and%20feature%20rich%20WYSIWYG%20editor.%20While%20its%20simple%20to%20implement%2C%20it%20can%20be%20awful%20to%20automate.%20Using%20Selenium%20type%2C%20click%2C%20click_at%2C%20etc%20will%20not%20work%20%28I%20suspect%20because%20the%20editor%20is%20technically%20external%20from%20the%20page%20were%20testing%2C%20see%20below%29.%0D%0AInit" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://antlong.com/selenium-and-tinymce/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://antlong.com/selenium-and-tinymce/&amp;title=Selenium+and+TinyMCE" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Selenium+and+TinyMCE+-+http://b2l.me/c8zz9+" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://antlong.com/selenium-and-tinymce/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://antlong.com/selenium-and-tinymce/&amp;bm_description=Selenium+and+TinyMCE&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://antlong.com/selenium-and-tinymce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
