如何从下拉框中获取 XPATH 到 select 空白值
How to get XPATH to select blank value from Drop down box
我有网页,我正从那里尝试 select 来自没有任何值的下拉框的 XPATH。
<select name="selectOption" id="selectOption">
<option value="">Please select</option>
<option value="Op1">Op1</option>
<option selected="selected" value="Op2">Op2</option>
<option value="Op3">Op3</option>
</select>
我正尝试通过 XPATH select "Please Select" 选项,
//*[@id="selectOption"]/option[1]
但我不理解请 Select.Here 请 select 的值为空白。
并且建议方法必须是 appreciated.Thanks
尝试使用 Select.selectByVisibleText()
我有网页,我正从那里尝试 select 来自没有任何值的下拉框的 XPATH。
<select name="selectOption" id="selectOption">
<option value="">Please select</option>
<option value="Op1">Op1</option>
<option selected="selected" value="Op2">Op2</option>
<option value="Op3">Op3</option>
</select>
我正尝试通过 XPATH select "Please Select" 选项,
//*[@id="selectOption"]/option[1]
但我不理解请 Select.Here 请 select 的值为空白。
并且建议方法必须是 appreciated.Thanks
尝试使用 Select.selectByVisibleText()