Created
September 1, 2013 09:07
-
-
Save easonhan007/6403210 to your computer and use it in GitHub Desktop.
获取qq意甲板块里国际米兰的相关新闻
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
#encoding: utf-8 | |
# print all the inter news with waitr-webdriver | |
require 'watir-webdriver' | |
url = 'http://sports.qq.com/seriea/' | |
b = Watir::Browser.new :chrome | |
b.goto url | |
b.div(:id, 'inter').div(:class, 'hot_list').links.each do |link| | |
puts link.text | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment