Hi, I'm new to Selenium IDE (using the latest 2.5.0), just tried my first test and exported it to Ruby / RSpec / WebDriver (using File -> Export Testcase As menu option, as per documentation). The ruby file cannot be run due to syntax errors:
`${' is not allowed as a global variable name (SyntaxError)
The reason is that ${receiver} variable is left in the file, not replaced with @driver.
${receiver}.find_element(how, what)
If I manually replace ${receiver} with @driver, then the file runs just fine.
This looks like the issue 6129 which was fixed in October 2013, but the newest IDE version 2.5.0 (released on Jan 1st, 2014) doesn't appear to contain the fix.
http://code.google.com/p/selenium/issues/detail?can=2&q=6129&colspec=ID%20Stars%20Type%20Status%20Priority%20Milestone%20Owner%20Summary&id=6129Please advise on how I can pick up the fix, if this is indeed the same known issue.