How to run a script embedded in the page in Selenium IDE? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T15:10:58Zhttp://stackoverflow.com/feeds/question/877361http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/877361/how-to-run-a-script-embedded-in-the-page-in-selenium-ide1How to run a script embedded in the page in Selenium IDE?slashnick2009-05-18T11:58:28Z2009-06-16T09:04:29Z
<p>I'm testing a page with <a href="http://seleniumhq.org/projects/ide/" rel="nofollow">Selenium IDE</a> and want to execute a method already in the page. I've tried <code>getEval(window.name.space.function())</code> but it just returns <code>window.name</code> is undefined. Is this possible?</p>
http://stackoverflow.com/questions/877361/how-to-run-a-script-embedded-in-the-page-in-selenium-ide/877684#8776842Answer by fforw for How to run a script embedded in the page in Selenium IDE?fforw2009-05-18T13:13:20Z2009-05-18T13:13:20Z<p>There is a getCurrentWindow() function which for unfathomable reasons only allows you to access "safe" properties (what is this supposed to protect against? people maliciously doing drive-by testing of other people's website?). Newer versions offer a getUserWindow() function that solves those issues. See <a href="http://crschmidt.net/blog/348/selenium-ide-getcurrentwindow-problems/" rel="nofollow">this blog entry</a> and <a href="http://jira.openqa.org/browse/SEL-558" rel="nofollow">this issue</a> for details.</p>