WebDriver/src/WebDriver/WDNoSuchWindow.class.st

14 lines
309 B
Smalltalk

"
A command to switch to a window could not be satisfied because the window could not be found.
"
Class {
#name : #WDNoSuchWindow,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDNoSuchWindow class >> matchesErrorCode: errCode [
^ errCode = 'no such window'
]