<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Running Selenium TestRunner slowly</title>
	<atom:link href="http://www.codediesel.com/testing/running-selenium-testrunner-slowly/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codediesel.com/testing/running-selenium-testrunner-slowly/</link>
	<description>/* PHP &#38; MySQL Journal */</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:39:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: harendra</title>
		<link>http://www.codediesel.com/testing/running-selenium-testrunner-slowly/comment-page-1/#comment-1663</link>
		<dc:creator>harendra</dc:creator>
		<pubDate>Sat, 06 Feb 2010 13:04:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.codediesel.com/sql/running-selenium-testrunner-slowly/#comment-1663</guid>
		<description>Please let me know if I can set the &quot;Highlight Elements&quot; option checked by default.

Thanks,</description>
		<content:encoded><![CDATA[<p>Please let me know if I can set the &#8220;Highlight Elements&#8221; option checked by default.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sameer</title>
		<link>http://www.codediesel.com/testing/running-selenium-testrunner-slowly/comment-page-1/#comment-1532</link>
		<dc:creator>sameer</dc:creator>
		<pubDate>Wed, 25 Nov 2009 10:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.codediesel.com/sql/running-selenium-testrunner-slowly/#comment-1532</guid>
		<description>The point was to set the default value to something high without manual intervention. As the default &#039;speedController&#039; value is &#039;0&#039;, the above code will set the default to &#039;0&#039;. To increase the default value and also use the slider, we can edit the following lines:

&lt;code&gt;
this.speedController = new Control.Slider(&#039;speedHandle&#039;, &#039;speedTrack&#039;, {
            range: $R(0, 1000),
            onSlide: fnBindAsEventListener(this.setRunInterval, this),
            onChange: fnBindAsEventListener(this.setRunInterval, this)
        });
&lt;/code&gt;

to 

&lt;code&gt;
this.speedController = new Control.Slider(&#039;speedHandle&#039;, &#039;speedTrack&#039;, {
            range: $R(100, 5000),
            onSlide: fnBindAsEventListener(this.setRunInterval, this),
            onChange: fnBindAsEventListener(this.setRunInterval, this)
        });
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>The point was to set the default value to something high without manual intervention. As the default &#8216;speedController&#8217; value is &#8217;0&#8242;, the above code will set the default to &#8217;0&#8242;. To increase the default value and also use the slider, we can edit the following lines:</p>
<p><code><br />
this.speedController = new Control.Slider('speedHandle', 'speedTrack', {<br />
            range: $R(0, 1000),<br />
            onSlide: fnBindAsEventListener(this.setRunInterval, this),<br />
            onChange: fnBindAsEventListener(this.setRunInterval, this)<br />
        });<br />
</code></p>
<p>to </p>
<p><code><br />
this.speedController = new Control.Slider('speedHandle', 'speedTrack', {<br />
            range: $R(100, 5000),<br />
            onSlide: fnBindAsEventListener(this.setRunInterval, this),<br />
            onChange: fnBindAsEventListener(this.setRunInterval, this)<br />
        });<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rule</title>
		<link>http://www.codediesel.com/testing/running-selenium-testrunner-slowly/comment-page-1/#comment-1531</link>
		<dc:creator>Rule</dc:creator>
		<pubDate>Wed, 25 Nov 2009 09:05:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.codediesel.com/sql/running-selenium-testrunner-slowly/#comment-1531</guid>
		<description>why not use

&lt;code&gt;
reset: function() {
        this.runInterval = (this.speedController.value * 2);
        this._switchContinueButtonToPause();
    },
&lt;/code&gt;

That way you can still use the slider, but have your maximum 2 seconds :)</description>
		<content:encoded><![CDATA[<p>why not use</p>
<p><code><br />
reset: function() {<br />
        this.runInterval = (this.speedController.value * 2);<br />
        this._switchContinueButtonToPause();<br />
    },<br />
</code></p>
<p>That way you can still use the slider, but have your maximum 2 seconds <img src='http://www.codediesel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

