WebDriver/src/WebDriver/WDNoSuchFrame.class.st

14 lines
304 B
Smalltalk

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