WebDriver/src/WebDriver/WDInvalidElementState.class.st

14 lines
393 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.

"
A command could not be completed because the element is in an invalid state, e.g. attempting to clear an element that isnt both editable and resettable.
"
Class {
#name : #WDInvalidElementState,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDInvalidElementState class >> matchesErrorCode: errCode [
^ errCode = 'invalid element state'
]