WebDriver/src/WebDriver/WDNoSuchShadowRoot.class.st

14 lines
269 B
Smalltalk

"
The element does not have a shadow root.
"
Class {
#name : #WDNoSuchShadowRoot,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDNoSuchShadowRoot class >> matchesErrorCode: errCode [
^ errCode = 'no such shadow root'
]