WebDriver/src/WebDriver/WDNoSuchAlert.class.st

14 lines
284 B
Smalltalk

"
An attempt was made to operate on a modal dialog when one was not open.
"
Class {
#name : #WDNoSuchAlert,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDNoSuchAlert class >> matchesErrorCode: errCode [
^ errCode = 'no such alert'
]