Ruby 打开 IE 浏览器并访问首页

require 'win32ole' 

ie = WIN32OLE.new('InternetExplorer.Application') 
ie.visible = true 
ie.gohome

编程技巧