默认属性:
<span class="selectBox-label" style="width: 135px;">--Select--</span>
从下拉列表中选择的值很少,具有以下属性:
<span class="selectBox-label" style="width: 135px;">Association</span>
<span class="selectBox-label" style="width: 135px;">Partnership</span>
必填项是选择值“关联”或“伙伴关系”
答案 0 :(得分:0)
对下拉标签执行点击操作,然后对所需选项执行点击操作。
可以做类似的事情
//Clicks on the dropdown
driver.findElement(By.xpath("//span[@class='selectBox-label']")).click();
//Clicks on the required option
driver.findElement(By.xpath("//span[text()='Association']")).click();