The JSPOT Agent is a simple tool for interacting with JSPOT. It allows you to capture screenshots from URLs or screens and upload them.
You can run the agent via the command line using the following command format:
jspot.exe --hash <monitor_hash> --url <target_url> [--full_page] [--screen <screen_number>] [--crop_top <pixels>] [--crop_bottom <pixels>] [--crop_left <pixels>] [--crop_right <pixels>] [--instructions <path_to_instructions_file>]
--screen
should be
used instead).--url
should be
used instead).--attachment /path/to/log.txt
.
[WAIT] 2
, [HIDE] .element-class
, [CLICK] #button-id
.
To capture a screenshot of a webpage and upload it to JSPOT:
jspot.exe --hash XXX --url https://sunet.se --full_page
To capture a screenshot of a specific screen:
jspot.exe --hash XXX --screen 1
To capture a screenshot of a webpage and crop it from the top and bottom:
jspot.exe --hash XXX --url https://sunet.se --crop_top 100 --crop_bottom 50
To capture a screenshot of a webpage and perform additional actions from an instructions file:
jspot.exe --hash XXX --url https://sunet.se --instructions "C:\path\to\instructions.txt"
Note: You must specify either a URL or a screen, but not both.
Here’s an example of what the instructions file might look like:
[WAIT] 2 [WAIT_ELEMENT] #login-button [CLICK] #login-button [HIDE] .advertisement-banner
The instructions file allows you to control additional actions such as waiting, clicking, hiding elements, etc. You can specify multiple actions, and they will be executed in sequence after the screenshot is captured.