Skip to content

Instantly share code, notes, and snippets.

@katryo
Created November 7, 2014 10:06
Show Gist options
  • Save katryo/66434d646a5665ba023b to your computer and use it in GitHub Desktop.
Save katryo/66434d646a5665ba023b to your computer and use it in GitHub Desktop.
Capybara webkitでのスクレイピング例
require 'rubygems'
require 'capybara'
require 'capybara/dsl'
require 'capybara-webkit'
class Driver
Capybara.default_driver = :webkit
include Capybara::DSL
end
d = Driver.new
d.visit "http://papimo.jp/machinedatas/view/00031715/132"
puts d.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment