spec/watirspec/elements/tr_spec.rb in watir-6.16.5 vs spec/watirspec/elements/tr_spec.rb in watir-6.17.0
- old
+ new
@@ -27,18 +27,9 @@
it "raises TypeError when 'what' argument is invalid" do
expect { browser.tr(id: 3.14).exists? }.to raise_error(TypeError)
end
end
- describe '#click' do
- not_compliant_on :internet_explorer, :chrome, :firefox do
- it "fires the row's onclick event" do
- browser.tr(id: 'inner_first').click
- expect(messages).to include('tr')
- end
- end
- end
-
bug 'Safari does not strip text', :safari do
describe '#[]' do
let(:table) { browser.table(id: 'outer') }
it 'returns the nth cell of the row' do