Skip to content

Instantly share code, notes, and snippets.

@easonhan007
Created September 1, 2013 09:07
Show Gist options
  • Save easonhan007/6403210 to your computer and use it in GitHub Desktop.
Save easonhan007/6403210 to your computer and use it in GitHub Desktop.
获取qq意甲板块里国际米兰的相关新闻
#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