Bug 1417821 - Add element click intercepted error to WPT WebDriver client. r=whimboo

MozReview-Commit-ID: 1BFa4L7QW9d

--HG--
extra : rebase_source : 5f97db90c176a452e910ac23ef00f534e23819ed
This commit is contained in:
Andreas Tolfsen 2017-11-24 16:31:17 +00:00
Родитель 6180e6c94d
Коммит fb2066d22b
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -21,6 +21,11 @@ class WebDriverException(Exception):
"%s" % (self.status_code, self.http_status, self.stacktrace))
class ElementClickInterceptedException(WebDriverException):
http_status = 400
status_code = "element click intercepted"
class ElementNotSelectableException(WebDriverException):
http_status = 400
status_code = "element not selectable"