Sha256: e349e3b041ca83d09b582d8b1d7bd2dcfc59e0fe7b10194b33d5ca21ff7adc97
Contents?: true
Size: 1.68 KB
Versions: 8
Compression:
Stored size: 1.68 KB
Contents
require File.expand_path('watirspec/spec_helper', File.dirname(__FILE__)) describe Watir::Element do describe '#present?' do before do browser.goto(WatirSpec.url_for("wait.html", :needs_server => true)) end it 'returns true if the element exists and is visible' do browser.div(:id, 'foo').should be_present end it 'returns false if the element exists but is not visible' do browser.div(:id, 'bar').should_not be_present end it 'returns false if the element does not exist' do browser.div(:id, 'should-not-exist').should_not be_present end end describe "#reset!" do it "successfully relocates collection elements after a reset!" do element = browser.divs(:id, 'foo').to_a.first element.should_not be_nil element.send :reset! element.should exist end end describe "#exists?" do it "should not propagate ObsoleteElementErrors" do browser.goto WatirSpec.url_for('removed_element.html', :needs_server => true) button = browser.button(:id => "remove-button") element = browser.div(:id => "text") element.should exist button.click element.should_not exist end end describe "#hover" do not_compliant_on [:webdriver, :firefox, :synthesized_events], [:webdriver, :ie], [:webdriver, :iphone], [:webdriver, :safari] do it "should hover over the element" do browser.goto WatirSpec.url_for('hover.html', :needs_server => true) link = browser.a link.style("font-size").should == "10px" link.hover link.style("font-size").should == "20px" end end end end
Version data entries
8 entries across 8 versions & 1 rubygems