[wtr-general] Re: automating httpwatch with watir

2015-03-03 Thread Justin Ko
The API for both Watir-Classic and HttpWatch have changed since that example was written. Updating to the latest API, the script would be: require 'win32ole' require 'watir-classic' # Open the IE browser using Watir ie = Watir::Browser.new # Attach HttpWatch control = WIN32OLE.new('HttpWatch.

[wtr-general] Re: automating httpwatch with watir

2015-02-25 Thread Super Kevy
What version of Watir are you on? require 'watir-classic' # or require 'watir-webdriver' ie = Watir::Browser.new(:internet_explorer') ie.maximize On Monday, February 23, 2015 at 11:38:19 PM UTC-6, Mike McClarin wrote: > > Hi, I am trying to automate httpwatch with watir. Please see my