Skip to content

Instantly share code, notes, and snippets.

@mrship
Created July 16, 2009 15:22
Show Gist options
  • Save mrship/148471 to your computer and use it in GitHub Desktop.
Save mrship/148471 to your computer and use it in GitHub Desktop.
require 'rubygems'
gem 'jarib-celerity'
require 'celerity'
browser = Celerity::Browser.new
browser.goto("file://#{File.expand_path(File.dirname(__FILE__))}/timeout.html")
puts browser.url
sleep(4)
puts browser.url
if browser.text.include?("Search")
puts "yay"
else
puts browser.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment