spec/element_spec.rb in watir-6.6.0 vs spec/element_spec.rb in watir-6.6.1

- old
+ new

@@ -89,20 +89,18 @@ expect { watir_element.text }.to_not raise_error end end - bug "Actions Endpoint Not Yet Implemented", :firefox do - describe "#hover" do - not_compliant_on :internet_explorer, :safari do - it "should hover over the element" do - browser.goto WatirSpec.url_for('hover.html') - link = browser.a + describe "#hover" do + not_compliant_on :internet_explorer, :safari, %i(remote firefox) do + it "should hover over the element" do + browser.goto WatirSpec.url_for('hover.html') + link = browser.a - expect(link.style("font-size")).to eq "10px" - link.hover - expect(link.style("font-size")).to eq "20px" - end + expect(link.style("font-size")).to eq "10px" + link.hover + expect(link.style("font-size")).to eq "20px" end end end describe "#inspect" do