我无法在fire foc浏览器中找到以下HTML
的select元素我正在尝试xpath" .//*[@id='div_2_1_2_1_1_1_select']" 请帮忙
<div id="div_2_1_2_1_1_1_formGroup" class="form-group">
<label id="div_2_1_2_1_1_1_selectLabel" class="control-label" for="div_2_1_2_1_1_1_select">Document Type</label>
<div id="div_2_1_2_1_1_1_formCol">
<select id="div_2_1_2_1_1_1_select" class="form-control">
<option value="ID Proof Document">ID Proof Document</option>
</select>
</div>
</div>
答案 0 :(得分:0)
使用此代码进行定位。
Select dropDown = new Select(driver.findElement(By.xpath("//select[@id='div_2_1_2_1_1_1_select']")))
答案 1 :(得分:0)
请尝试以下方法: -
//select[@id='div_2_1_2_1_1_1_select' and @class='form-control']
希望它会对你有所帮助:)。