Created
January 27, 2017 00:12
-
-
Save smartynko/9033554f3e64e53466f4ac3702ab76ab to your computer and use it in GitHub Desktop.
This file contains hidden or 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 'nokogiri' | |
require 'open-uri' | |
page = Nokogiri::HTML(open("http://v-tac.eu/led-lights/lights1/led-spotlights/led-spotlight-7w-gu10-smd-white-plastic-white-detail.html")) | |
puts page.class # => Nokogiri::HTML::Document | |
test = page.css("div#bd_results .productdetails .product-fields")[6].css("div.product-field") | |
puts test.text.strip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment