0
我試圖驗證一個按鈕在我的測試頁中loacted有一個'禁用'屬性應用於它。這裏是代碼:c#webdriver - 我怎樣才能驗證'禁用'屬性存在的按鈕
<button type="button" class="btn-1" data-type="plus" data-field="quantity" disabled="disabled">
我該如何去處理「禁用」屬性?
的幫助
我試圖驗證一個按鈕在我的測試頁中loacted有一個'禁用'屬性應用於它。這裏是代碼:c#webdriver - 我怎樣才能驗證'禁用'屬性存在的按鈕
<button type="button" class="btn-1" data-type="plus" data-field="quantity" disabled="disabled">
我該如何去處理「禁用」屬性?
的幫助
非常感謝我沒有使用C#,但我認爲你可以使用的getAttribute()方法的webdriver API。
所以它應該是類似的東西:
IWebElement button = locator to button;
button.getAttribute("disabled");
然後你就可以斷定這個值等
這是正確的答案。記住「禁用」可以有多個值:http://stackoverflow.com/questions/6961526/correct-value-for-disabled-attribute,所以它是由你來確保你照顧他們。 – Arran 2014-09-22 14:30:47