2014-09-22 41 views

回答

2

非常感謝我沒有使用C#,但我認爲你可以使用的getAttribute()方法的webdriver API。

c# getAttribute

所以它應該是類似的東西:

IWebElement button = locator to button; 
button.getAttribute("disabled"); 

然後你就可以斷定這個值等

+0

這是正確的答案。記住「禁用」可以有多個值:http://stackoverflow.com/questions/6961526/correct-value-for-disabled-attribute,所以它是由你來確保你照顧他們。 – Arran 2014-09-22 14:30:47