WebDriver/src/WebDriver/WDNoSuchCookie.class.st

14 lines
348 B
Smalltalk
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"
No cookie matching the given path name was found amongst the associated cookies of the current browsing contexts active document.
"
Class {
#name : #WDNoSuchCookie,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDNoSuchCookie class >> matchesErrorCode: errCode [
^ errCode = 'no such cookie'
]