Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save smallmake/27c621a24d1010dbdf4fd3085b02091a to your computer and use it in GitHub Desktop.
Save smallmake/27c621a24d1010dbdf4fd3085b02091a to your computer and use it in GitHub Desktop.
require "nokogiri"
doc = Nokogiri::HTML(File.open("appearance_jp.html"))
doc.xpath('//form').first.xpath('.//input','.//select','.//textarea').each do |e|
puts "#{e.name}, type:#{e['type']}, name:#{e['name']}, class:#{e['class']}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment