我已经四处寻找并且看不到答案,虽然它必须(?)很简单?
给出类似的东西:
<form>
<input type="text">
<select></select>
</form>
我想选择输入元素或选择,而不是事先知道它将是什么。
我已尝试过这方面的变体(其中。是表单节点):
./(input or select)
但我收到有关无效xpath的消息。这是在Python 3中。
答案 0 :(得分:3)
您可以使用此XPath:
//input | //select
或
//*[self::input or self::select]