我正在尝试从 Dropbox 中选择一个值。我尝试过XPath
但ID
似乎无法达到它
这是我尝试过的
var mySelectElm4 = driver.FindElement(By.Id("ddlCountryOfBirth"));
var mySelect4 = new SelectElement(mySelectElm4);
mySelect4.SelectByText("Togo");
这就是 html
<div class="form-object">
<span class="error-star"></span>
<div class="field-description input-placeholder styled field-description-show">Country of birth</div>
<div class="field field-select">
<select name="ctl00$plcMainArea$ddlCountryOfBirth" class="field-data selectCustom watermark hasValue" validate="validate" data-rule-required="true" data-msg-required="This field is required." placeholder="Country of birth" id="ddlCountryOfBirth">
<option value="AF">Thailand</option>
<option value="BS">The Bahamas</option>
<option value="GM">The Gambia</option>
<option value="TG">Togo</option>
<option value="TK">Tokelau</option>
<option value="TO">Zambia</option>
<option value="ZW">Zimbabwe</option>
</select>
<span class="selectCustomBox">
<span class="selectCustomBoxInner">Afghanistan</span>
</span>
</div>
<div id="ddlCountryOfBirth_e" class="error-message"></div>
<div class="clearfix"></div>
</div>