我打算獲取屬性type="radio"
但我不知道如何在硒webdriver中。 我嘗試用試圖獲得Selenium Webdriver中的特定屬性
if(driver.findElement(By.id("userStatusEnable")).getAttribute("type").equals("radio"))
,並通過改變ID爲x-AUTO-210
<div id="userStatusEnable" class="x-form-check-wrap x-form-field x-component " role="presentation" style="position: relative;">
<input id="x-auto-210" class=" x-form-radio" type="radio" name="gxt.RadioGroup.5" style="position: relative; left: 0px; top: 4px;" tabindex="0" value="enabled" aria-describedby="x-auto-190" checked="">
<label class="x-form-cb-label" for="x-auto-210" htmlfor="x-auto-210" style="position: relative; left: 1px; top: 3px;">Enable</label>
</div>
究竟是你想做些什麼?用'type =「radio」'查找元素,或者驗證在另一個選擇器中找到的元素是否具有'type =「radio」'? – Richard 2014-09-18 18:36:03
是的,我試圖驗證該ID是類型的無線電。所以我必須確認,我現在正在處理的頁面上有2個單選按鈕,但我不知道如何獲取屬性。 – 2014-09-18 19:06:54