Sha256: c8947f9f4df0cd6a5e25cdc6bb12c9e7d5617f8839e6cec504f549f22d010277

Contents?: true

Size: 751 Bytes

Versions: 5

Compression:

Stored size: 751 Bytes

Contents

# frozen_string_literal: false
require 'win32ole'

class IEHandler
  attr_reader :loop
  def initialize
    @urls = []
    @loop = true
  end
  def method_missing(event, *args)
    case event
    when "BeforeNavigate2"
      puts "Now Navigate #{args[1]}..."
    end
  end
  def onNavigateComplete2(pdisp, url)
    @urls << url
  end
  def onOnQuit
    puts "Now Stop IE..."
    @loop = false
  end
  def put_urls
    puts "You Navigated the URLs ..."
    @urls.each_with_index do |url, i|
      puts "(#{i+1}) #{url}"
    end
  end
end

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

ev = WIN32OLE_EVENT.new(ie)
ev.handler = IEHandler.new

while (ev.handler.loop)
  WIN32OLE_EVENT.message_loop
end
ev.handler.put_urls

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
win32ole-1.9.0 sample/win32ole/ienavi2.rb
win32ole-1.8.10 ext/win32ole/sample/ienavi2.rb
win32ole-1.8.9 ext/win32ole/sample/ienavi2.rb
win32ole-1.8.8 ext/win32ole/sample/ienavi2.rb
ruby-compiler-0.1.1 vendor/ruby/ext/win32ole/sample/ienavi2.rb