devlooped / Web

XLinq to Web

Home Page:https://clarius.org/Web

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Child combinator selects only first child

kzu opened this issue · comments

Example:

foo > bar turns into .//foo/child::*[1]/self::bar XPath, which would only select the first bar child element.

The conversion should be to .//foo/bar instead.