try to capture screenshots in circleci

This commit is contained in:
2023-02-24 16:15:20 -06:00
parent be6d4bb657
commit 82008f081c
2 changed files with 3 additions and 1 deletions

View File

@ -64,6 +64,8 @@ commands:
paths: paths:
- ~/.m2 - ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }} key: v1-dependencies-{{ checksum "pom.xml" }}
- store_artifacts:
path: /tmp/QSeleniumScreenshots
mvn_deploy: mvn_deploy:
steps: steps:

View File

@ -32,7 +32,7 @@ public class QSeleniumLib
private long WAIT_SECONDS = 10; private long WAIT_SECONDS = 10;
private String BASE_URL = "https://localhost:3001"; private String BASE_URL = "https://localhost:3001";
private boolean SCREENSHOTS_ENABLED = true; private boolean SCREENSHOTS_ENABLED = true;
private String SCREENSHOTS_PATH = "/tmp/"; private String SCREENSHOTS_PATH = "/tmp/QSeleniumScreenshots";