我尝试使用selenium java从DropDown中选择一个选项。我也尝试了很多解决方案。在FirePath中执行XPath时找到country元素,但在运行脚本时找不到。
Selenium代码:
driver.findElement(By.xpath("//*[@class='selectize-input items not-full has-options']")).click();
Thread.sleep(500);
String countryXpath = "//*[@class='select-item']/following::span[text()='India']";
System.out.println(countryXpath);
WebElement countryName = driver.findElement(By.xpath(countryXpath));
ScrollHelper.ScrollHorizontalUpToVisibilityOfElement(countryName);
countryName.click();
HTML代码:
<select class="selectized isfocused parsley-error" name="Country" data-input-parsley="" data-parsley-trigger="change input" data-parsley-required-message="This field should not empty" data-parsley-required="true" data-parsley-group="country-select" tabindex="-1" style="display: none;" data-parsley-id="17">
<option value="" selected="selected"/>
</select>
<div class="selectize-control single">
<div class="selectize-input items has-options not-full focus input-active dropdown-active">
<input autocomplete="off" tabindex="" style="width: 100%; opacity: 1; position: relative; left: 0px;" placeholder="" type="text"/>
</div>
<div class="selectize-dropdown single" style="display: block; visibility: visible; width: 413px; top: 32px; left: 0px;">
<div class="selectize-dropdown-content">
<div class="select-item" data-selectable="" data-value="6">
<div class="select-option">
<span class="text"> Australia </span>
</div>
</div>
<div class="select-item" data-selectable="" data-value="2">
<div class="select-option">
<span class="text"> Canada </span>
</div>
</div>
<div class="select-item" data-selectable="" data-value="21">
<div class="select-option">
<span class="text"> China </span>
</div>
</div>
<div class="select-item" data-selectable="" data-value="22">
<div class="select-option">
<span class="text"> India </span>
</div>
</div>
<div class="select-item" data-selectable="" data-value="25">
<div class="select-option">
<span class="text"> USA </span>
</div>
</div>
</div>
答案 0 :(得分:2)
如果您能够点击居住国家/地区,那么您必须向下滚动一点点,然后此代码可能适合您:
List<WebElement> countries = driver.findElements(By.cssSelector("div[class='select-option']>span"));
for(WebElement country : countries){
if(country.getText().trim().equals("Singapore"))
country.click();
}
如果您遇到任何问题,请向下滚动,请告知我们。
答案 1 :(得分:1)
在Html中,span文本在国家/地区名称之前有空格
<span class="text"> India </span>
将xpath更新为
String countryXpath = "//*[@class='select-item']/following::span[contains(text(), 'India')]";
上面提到的xpath将检查范围的文本是否包含India
答案 2 :(得分:0)
尝试使用此xpath单击元素:
"//span[contains(text(), 'India')]"
让我知道它是否有效。