zilkey (owner)

Revisions

gist: 103917 Download_button fork
public
Public Clone URL: git://gist.github.com/103917.git
Embed All Files: show embed
selecting frames in selenium.rb #
1
2
3
4
5
When /^I type "([^\"]*)" into the "([^\"]*)" rich text editor$/ do |description, iframe_id|
  selenium.select_frame "id=#{iframe_id}"
  selenium.type_keys "css=body", description
  selenium.select_frame "relative=top"
end