WebDriver/src/WebDriver/WDElementNotInteractable.cl...

14 lines
340 B
Smalltalk
Raw Normal View History

2022-04-26 23:10:51 +00:00
"
A command could not be completed because the element is not pointer- or keyboard interactable.
"
Class {
#name : #WDElementNotInteractable,
#superclass : #WDException,
2022-04-27 12:30:28 +00:00
#category : #'WebDriver-Exception'
2022-04-26 23:10:51 +00:00
}
2022-04-27 12:30:28 +00:00
{ #category : #testing }
WDElementNotInteractable class >> matchesErrorCode: errCode [
^ errCode = 'element not interactable'
]