「Ruby入門」RubyでIE解析ページを呼び出して、解析結果を取得するプログラム
rubyコード:
require 'win32ole’
web_browser = WIN32OLE.new('InternetExplorer.Application’)
web_browser.visible = true
web_browser.navigate('http://www.arkgame.com/’)
while web_browser.ReadyState != 4
sleep 1
end
puts web_browser.document.getElementById('header’).innerHtml.length
puts “ページはロードされる"