Package com.applitools.eyes.events
Interface ISessionEventHandler
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled when the model gathering phase had ended.voidCalled when the model gathering for creating a session phase had started.voidCalled 'set size' operation has ended (either failed/success).voidsetSizeWillStart(com.applitools.eyes.RectangleSize sizeToSet) Called when setting the size of the application window is about to start.voidtestEnded(String autSessionId, TestResults testResults) Called after a session had ended.voidtestStarted(String autSessionId) Called after a session had started.voidvalidationEnded(String autSessionId, String validationId, ValidationResult validationResult) Called when a validation had ended.voidvalidationWillStart(String autSessionId, ValidationInfo validationInfo) Called before a new validation will be started.
-
Method Details
-
initStarted
void initStarted()Called when the model gathering for creating a session phase had started. -
initEnded
void initEnded()Called when the model gathering phase had ended. -
setSizeWillStart
void setSizeWillStart(com.applitools.eyes.RectangleSize sizeToSet) Called when setting the size of the application window is about to start.- Parameters:
sizeToSet- the size of the window.
-
setSizeEnded
void setSizeEnded()Called 'set size' operation has ended (either failed/success). -
testStarted
Called after a session had started.- Parameters:
autSessionId- The AUT session ID.
-
testEnded
Called after a session had ended.- Parameters:
autSessionId- The AUT session ID.testResults- The test results.
-
validationWillStart
Called before a new validation will be started.- Parameters:
autSessionId- The AUT session ID.validationInfo- The validation parameters.
-
validationEnded
Called when a validation had ended.- Parameters:
autSessionId- The AUT session ID.validationId- The ID of the validation which had ended.validationResult- The validation results.
-