You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using xpaths in clixon (eg in get-config :XPATH) you cannot use "//" other than on the top-level.
That is, the following works: //abc
But not the following: /abc//foo
However the actual axis function seems to work: /abc/descendant-or-self::node()/foo
which means that the abbreviation seems broken, not the underlying function.
Workaround: use /descendant-or-self::node()/ instead
The text was updated successfully, but these errors were encountered:
When using xpaths in clixon (eg in get-config :XPATH) you cannot use "//" other than on the top-level.
That is, the following works:
//abc
But not the following:
/abc//foo
However the actual axis function seems to work:
/abc/descendant-or-self::node()/foo
which means that the abbreviation seems broken, not the underlying function.
Workaround: use
/descendant-or-self::node()/
insteadThe text was updated successfully, but these errors were encountered: