WebDriver/src/WebDriver/WDDetachedShadowRoot.class.st

14 lines
320 B
Smalltalk

"
A command failed because the referenced shadow root is no longer attached to the DOM.
"
Class {
#name : #WDDetachedShadowRoot,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDDetachedShadowRoot class >> matchesErrorCode: errCode [
^ errCode = 'detached shadow root'
]