Package com.applitools.eyes.events
Interface ISessionEventHandler
-
- All Known Implementing Classes:
SessionEventHandlers
public interface ISessionEventHandler
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidinitEnded()Called when the model gathering phase had ended.voidinitStarted()Called when the model gathering for creating a session phase had started.voidsetSizeEnded()Called '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 Detail
-
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
void testStarted(String autSessionId)
Called after a session had started.- Parameters:
autSessionId- The AUT session ID.
-
testEnded
void testEnded(String autSessionId, TestResults testResults)
Called after a session had ended.- Parameters:
autSessionId- The AUT session ID.testResults- The test results.
-
validationWillStart
void validationWillStart(String autSessionId, ValidationInfo validationInfo)
Called before a new validation will be started.- Parameters:
autSessionId- The AUT session ID.validationInfo- The validation parameters.
-
validationEnded
void validationEnded(String autSessionId, String validationId, ValidationResult validationResult)
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.
-
-