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

14 lines
340 B
Smalltalk

"
A command could not be completed because the element is not pointer- or keyboard interactable.
"
Class {
#name : #WDElementNotInteractable,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDElementNotInteractable class >> matchesErrorCode: errCode [
^ errCode = 'element not interactable'
]