-2
如何找到Selenium下面的元素?如何使用Xpath定位此元素?
<input id="mainForm:field_LayFact450505264_16032015_145612--Order-ServiceClass_R" class="iceSelInpTxtTxt fieldTxt" type="text" value="" style="width: 150px;" onmousedown="this.focus();" onfocus="setFocus(this.id);svOnFocus(formOf(this), this, event, false);" onblur="setFocus('');svOnBlur(formOf(this), this, event);" name="mainForm:field_LayFact450505264_16032015_145612--Order-ServiceClass_R" autocomplete="off">
我試着用ends-with,它沒有工作。
哪裏是你的數據,HTML代碼和XPath你已經試過這件..? –
– ananya
如果ID不是唯一的,每次您可以嘗試類名稱。您可以通過類名搜索元素,或者如果您想使用xpath嘗試此操作//輸入[@ class =「iceSelInpTxtTxt fieldTxt」] – Nitesh