//a[contains(@href,‘from_pc_logon’)]
//a[starts-with(@href,‘https’)] # 将定位以https开头的元素
//a[text()=‘地图’]
//div/div[2]/div[2]/a[last()]
//a[text()=‘地图’ and contains(@href,‘map’)]
//a[text()=‘地图’ or contains(@href,‘map’)]
//a[not(text()=‘地图’)]
//a[text()>0 or text()>‘0’] # 结果只有1条
轴表达式说明
parent::* :表示当前节点的父节点元素
ancestor::* :表示当前节点的祖先节点元素
child::* :表示当前节点的子元素 /A/descendant::* 表示A的所有后代元素
self::* :表示当前节点的自身元素
ancestor-or-self::* :表示当前节点的及它的祖先节点元素
descendant-or-self::* :表示当前节点的及它们的后代元素
following-sibling::* :表示当前节点的后序所有兄弟节点元素
preceding-sibling::* :表示当前节点的前面所有兄弟节点元素
following::* :表示当前节点的后序所有元素
preceding::* :表示当前节点的所有元素