Iseditable

Determines whether the specified input element is editable, ie hasn't been disabled. This method will fail if the specified element isn't an input element.

Required Attributes
locator
Element Locator to identify the html element.
Usage Examples
Example #1
<selenium baseurl="http://www.google.com">
   
<open url="/" />
   
<waitForPageToLoad timeout="30000" />
   
<assert>
      
<isEditable locator="q" />
   
</assert>
</selenium>