Bug 1055088: Update Marionette HtmlElement documentation for is_enabled; r=jgriffin

This commit is contained in:
David Burns 2014-08-19 00:07:56 +01:00
Родитель 30e4762ded
Коммит 40faf654ad
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -127,7 +127,11 @@ class HTMLElement(object):
def is_enabled(self):
'''
Returns True if the element is enabled.
This command will return False if all the following criteria are met otherwise return True:
* A form control is disabled.
* A HtmlElement has a disabled boolean attribute.
'''
return self.marionette._send_message('isElementEnabled', 'value', id=self.id)