The information in this topic may be out of date. The current SDK reference guide has moved here.

window method

Class: TargetPlatform: EspressoLanguage: Java SDK:

Configure check to match the entire window.

Syntax

eyes.check(Target.window())

Note: This method is a static method.

Parameters

This method does not take any parameters.

Return value

Type: EspressoCheckSettings

Remarks

Handling popups and dialogs

If your checkpoints includes a popup or dialog then the way you create the checkpoint depends on which layers you want to capture as illustrated in the code below:


eyes.check('viewport only', Target.window()); 
eyes.check('dialog only',Target.window().dialog()); 
eyes.check('popup only',Target.window().popup());
eyes.check('viewport and popup or dialog',Target.window().includeAllLayers()); 

The example illustrate the behavior with a Target.window target, but they apply to a Target.region, Target.googleMap or Target.fragment as well.