<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: Selenium and the Permission denied to get property Location.href problem</title>
	<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/</link>
	<description>Mumbling about software</description>
	<pubDate>Tue, 06 Jan 2009 08:41:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
		<item>
		<title>By: Terrahawk</title>
		<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-259</link>
		<dc:creator>Terrahawk</dc:creator>
		<pubDate>Fri, 05 Sep 2008 12:36:57 +0000</pubDate>
		<guid>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-259</guid>
		<description>I had this problem too.. look @the selenium faq

http://wiki.openqa.org/display/SEL/Selenium+core+FAQ#SeleniumCoreFAQ-Whycan%27tIgetSeleniumCoreteststoworkwithGoogle%3F

greetz</description>
		<content:encoded><![CDATA[<p>I had this problem too.. look @the selenium faq</p>
<p><a href="http://wiki.openqa.org/display/SEL/Selenium+core+FAQ#SeleniumCoreFAQ-Whycan%27tIgetSeleniumCoreteststoworkwithGoogle%3F" rel="nofollow">http://wiki.openqa.org/display/SEL/Selenium+core+FAQ#SeleniumCoreFAQ-Whycan%27tIgetSeleniumCoreteststoworkwithGoogle%3F</a></p>
<p>greetz</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabio Brandão - Blog &#187; Blog Archive &#187; Selenium - Permission denied to get property Location.href</title>
		<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-249</link>
		<dc:creator>Fabio Brandão - Blog &#187; Blog Archive &#187; Selenium - Permission denied to get property Location.href</dc:creator>
		<pubDate>Wed, 23 Jul 2008 13:36:19 +0000</pubDate>
		<guid>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-249</guid>
		<description>[...] http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-p... [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] <a href="http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-p..." rel="nofollow">http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-p&#8230;</a> [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Dupuis</title>
		<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-244</link>
		<dc:creator>Rob Dupuis</dc:creator>
		<pubDate>Tue, 01 Jul 2008 20:23:19 +0000</pubDate>
		<guid>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-244</guid>
		<description>I just had this problem with selenium rc. 

My session was started using an ip address: http://192.168.1.4:3000

It turned out that some of my app was rendering some links as  http://localhost:3000/blah/blah instead of http://192.168.1.4:3000/blahblah

The result of this was that my calls to waitForPageToLoad (or wait_for_page_to_load in ruby) ended up spitting out 'Permission denied to get property Location.href'

Taken me hours to track down.</description>
		<content:encoded><![CDATA[<p>I just had this problem with selenium rc. </p>
<p>My session was started using an ip address: <a href="http://192.168.1.4:3000" rel="nofollow">http://192.168.1.4:3000</a></p>
<p>It turned out that some of my app was rendering some links as  <a href="http://localhost:3000/blah/blah" rel="nofollow">http://localhost:3000/blah/blah</a> instead of <a href="http://192.168.1.4:3000/blahblah" rel="nofollow">http://192.168.1.4:3000/blahblah</a></p>
<p>The result of this was that my calls to waitForPageToLoad (or wait_for_page_to_load in ruby) ended up spitting out &#8216;Permission denied to get property Location.href&#8217;</p>
<p>Taken me hours to track down.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ariz Jacinto</title>
		<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-243</link>
		<dc:creator>Ariz Jacinto</dc:creator>
		<pubDate>Mon, 16 Jun 2008 22:00:34 +0000</pubDate>
		<guid>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-243</guid>
		<description>in the case of the redirection problem (@ #2), you have to assert all the location that the web app will go to in order for the test to work 


e.g.

$this-&#62;assertLocationEquals("http://domain/path1/");
$this-&#62;waitForPageToLoad(1000);
$this-&#62;assertLocationEquals("http://domain/path2/");
...</description>
		<content:encoded><![CDATA[<p>in the case of the redirection problem (@ #2), you have to assert all the location that the web app will go to in order for the test to work </p>
<p>e.g.</p>
<p>$this-&gt;assertLocationEquals(&#8221;http://domain/path1/&#8221;);<br />
$this-&gt;waitForPageToLoad(1000);<br />
$this-&gt;assertLocationEquals(&#8221;http://domain/path2/&#8221;);<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: znachor</title>
		<link>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-226</link>
		<dc:creator>znachor</dc:creator>
		<pubDate>Sun, 25 May 2008 13:14:54 +0000</pubDate>
		<guid>http://www.woloszyn.org/2008/04/22/selenium-and-the-permission-denied-to-get-property-locationhref-problem/#comment-226</guid>
		<description>Another hint: Nathan let me know that compressing all java scripts to one file using for instance Dojo ShrinkSafe (http://dojotoolkit.org/docs/shrinksafe) and including that one file from your local server will result in less cross domain scripting issues. Worth trying.</description>
		<content:encoded><![CDATA[<p>Another hint: Nathan let me know that compressing all java scripts to one file using for instance Dojo ShrinkSafe (http://dojotoolkit.org/docs/shrinksafe) and including that one file from your local server will result in less cross domain scripting issues. Worth trying.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
