How to run a script embedded in the page in Selenium IDE? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T15:10:58Z http://stackoverflow.com/feeds/question/877361 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/877361/how-to-run-a-script-embedded-in-the-page-in-selenium-ide 1 How to run a script embedded in the page in Selenium IDE? slashnick 2009-05-18T11:58:28Z 2009-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#877684 2 Answer by fforw for How to run a script embedded in the page in Selenium IDE? fforw 2009-05-18T13:13:20Z 2009-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>