WebDriver/src/WebDriver/WDMoveTargetOutOfBounds.cla...

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

"
The target for mouse interaction is not in the browsers viewport and cannot be brought into that viewport.
"
Class {
#name : #WDMoveTargetOutOfBounds,
#superclass : #WDException,
#category : #'WebDriver-Exception'
}
{ #category : #testing }
WDMoveTargetOutOfBounds class >> matchesErrorCode: errCode [
^ errCode = 'move target out of bounds'
]