Sha256: 3d10609cacd8a0a6c21bace3c2a3897b52b58faae561380e1ee11d411f589f8d

Contents?: true

Size: 418 Bytes

Versions: 1

Compression:

Stored size: 418 Bytes

Contents

require 'spec/spec_helper'
require 'taza/browser'

describe "Taza::Browser with watir ie" do
  it "should be able to make watir ie instance" do
    browser = nil
    begin 
      browser =  Taza::Browser.create({:browser => :ie,:driver =>:watir,:url => 'http://www.google.com'})
      browser.should be_a_kind_of(Watir::IE)
    ensure
      browser.close if browser.respond_to?(:close)
    end
  end  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
taza-0.8.0 spec/platform/windows/browser_spec.rb