unittests/css_selector_test.rb in watir-3.0.0.rc2 vs unittests/css_selector_test.rb in watir-3.0.0.rc3

- old
+ new

@@ -35,15 +35,10 @@ def test_image goto_page "div.html" assert_equal( "circle", browser.image(:css, "*[id ^= 'circ']").id ) end - def test_link - goto_page "links1.html" - assert_equal( "link_name", browser.link(:css, "*[name *= ink_nam]").name ) - end - def test_table goto_page "table1.html" - assert_equal( "Header", browser.cell(:css , ".sample th").text ) + assert_equal( "Header", browser.th(:css , ".sample th").text ) end end