WebDriver/src/WebDriver/WDStaleElementReference.cla...

14 lines
324 B
Smalltalk

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