WebDriver/src/WebDriver/WDUnexpectedAlertOpen.class.st

14 lines
286 B
Smalltalk

"
A modal dialog was open, blocking this operation.
"
Class {
#name : #WDUnexpectedAlertOpen,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDUnexpectedAlertOpen class >> matchesErrorCode: errCode [
^ errCode = 'unexpected alert open'
]