xpath
xpath copied to clipboard
多条件过滤
应该支持多个过滤条件,支持and或or或&&或||
比如
//a[@class="gh"][2]
或者 //a[@class="gh" and position()=2]
再比如
//a[@title][@href]
或者 //a[@title and @href]