Sha256: 6e1cbe6c12ca9e169d979d0b773de080da26eac12e15085228f80267586ea11d
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
require File.expand_path('watirspec/spec_helper', File.dirname(__FILE__)) describe Watir::Browser do describe ".new" do it "passes the args to webdriver" do Selenium::WebDriver.should_receive(:for).with(:firefox, :foo).and_return(nil) Watir::Browser.new(:firefox, :foo) end it "takes a Driver instance as argument" do mock_driver = mock(Selenium::WebDriver::Driver) Selenium::WebDriver::Driver.should_receive(:===).with(mock_driver).and_return(true) lambda { Watir::Browser.new(mock_driver) }.should_not raise_error end it "raises ArgumentError for invalid args" do lambda { Watir::Browser.new(Object.new) }.should raise_error(ArgumentError) end end describe "#execute_script" do before { browser.goto(WatirSpec.files + "/definition_lists.html") } it "wraps elements as Watir objects" do returned = browser.execute_script("return document.body") returned.should be_kind_of(Watir::Body) end it "wraps elements in an array" do list = browser.execute_script("return [document.body];") list.size.should == 1 list.first.should be_kind_of(Watir::Body) end it "wraps elements in a Hash" do hash = browser.execute_script("return {element: document.body};") hash['element'].should be_kind_of(Watir::Body) end it "wraps elements in a deep object" do hash = browser.execute_script("return {elements: [document.body], body: {element: document.body }}") hash['elements'].first.should be_kind_of(Watir::Body) hash['body']['element'].should be_kind_of(Watir::Body) end end bug "http://github.com/jarib/watirspec/issues/issue/8", [:webdriver, :ie], [:webdriver, :chrome] do it "raises an error when trying to interact with a closed browser" do b = WatirSpec.new_browser b.goto(WatirSpec.files + "/definition_lists.html") b.close lambda { b.dl(:id => "experience-list").id }.should raise_error(Error, "browser was closed") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
watir-webdriver-0.1.8 | spec/browser_spec.rb |