Created
November 7, 2014 10:06
-
-
Save katryo/66434d646a5665ba023b to your computer and use it in GitHub Desktop.
Capybara webkitでのスクレイピング例
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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