Show
Ignore:
Timestamp:
08/26/2008 21:06:37 (3 months ago)
Author:
alexpooley
Message:

Fixed xpath search when getting attribute value

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/test/test_parser.rb

    r161 r166  
    7474    assert_equal 'link1', (doc/:p/:a).first['id'] 
    7575    assert_equal 'link1', doc.search('p').at('a').get_attribute('id') 
     76    assert_equal 'link1', doc.at("//a/@id") 
    7677    assert_equal 'link2', (doc/'p').filter('.ohmy').search('a').first.get_attribute('id') 
    7778    assert_equal (doc/'p')[2], (doc/'p').filter(':nth(2)')[0]