Created
September 15, 2021 20:21
-
-
Save dannyshain/fa3aec57e6bd54150d2e4f1daf6e2ca2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String apiKey = System.getenv("APPLITOOLS_API_KEY"); | |
eyes.setApiKey(apiKey); | |
String batchName = null; | |
String batchId = System.getenv("APPLITOOLS_BATCH_ID"); | |
BatchInfo batchInfo = new BatchInfo(batchName); | |
batchInfo.setId(batchId); | |
eyes.setBatch(batchInfo); | |
eyes.setForceFullPageScreenshot(false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment