WebDriver/src/WebDriver/WDNoSuchElement.class.st

14 lines
297 B
Smalltalk

"
An element could not be located on the page using the given search parameters.
"
Class {
#name : #WDNoSuchElement,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDNoSuchElement class >> matchesErrorCode: errCode [
^ errCode = 'no such element'
]