如何 select 只有一个类型的第一个节点,在下一个兄弟姐妹中机械化? (ruby)

how select only the first node of a type, in next siblings with mechanize? (ruby)

<div></div>
<p>foo</p>
<ul><li>bar</li></ul>
<ul><li>baz</li></ul>

我怎样才能 select 仅先 ul? (像 page = Mechanize.new.get(url) 一样使用 Mechanize)

如果我尝试:

page.at('div').at('+ ul li').inner_html,它是 nil 因为 <ul> 不是直系兄弟

page.at('div').search('~ ul').first.at('li').inner_html 没关系,但是 ~ ul 会得到所有下一个 <ul> 这是浪费的时间,因为我只需要第一个,而且可能有很多 <ul> ...

那么还有其他选择吗?

如果您通过 DOM 定位,您可以像这样使用 :first-of-type 伪选择器:

page.at('div').search('~ ul:first-of-type').first.at('li').inner_html

page.at('div').at('ul:first-of-type li').inner_html