You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When reviewing the results of a test plan that was looking at the user experience from a web page the screenshot area only ever shows the following message Failed to load the image. The run is successful and in the filestore, there are jpeg images from the run each time it runs.
I cannot see anything in the logs that shows a permission error and also the files are being written.
This is the 3.0.1 community version running on Docker on Ubuntu 22.04
Resolved - I was using a custom domain on the CE edition - when I set the environment variable in the YML file it now works correctly and I can download exports properly too. I added
Is there an existing issue for this?
What is the current behavior?
When reviewing the results of a test plan that was looking at the user experience from a web page the screenshot area only ever shows the following message Failed to load the image. The run is successful and in the filestore, there are jpeg images from the run each time it runs.
I cannot see anything in the logs that shows a permission error and also the files are being written.
This is the 3.0.1 community version running on Docker on Ubuntu 22.04
### docker yml file
version: "3.9"
services:
mysql:
image: mysql:5.7 # Replace with mysql:8.0.32 for m1
platform: linux/x86_64 # Replace with linux/arm64/v8 for m1
container_name: testsigma_mysql
restart: always
volumes:
- ./db_data:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: testsigma_opensource
LANG: C.UTF-8
LC_ALL: C.UTF-8
ports:
- "3306"
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
healthcheck:
test: out=$$(mysqladmin ping -h localhost -P 3306 -u root --password=root 2>&1); echo $$out | grep 'mysqld is alive' || { echo $$out; exit 1; }
interval: 1s
retries: 120
testsigma_server:
image: testsigmahq/server:v3.0.1 # Replace with testsigmahq/server:v3.0.1-m1 for m1
container_name: testsigma_server
ports:
- "9090:9090"
- "443:443"
volumes:
- ./ts_data:/opt/app/ts_data
depends_on:
mysql:
condition: service_healthy
Is there anything else I can do, check or amend?
What is the expected behavior?
Display a screenshot for each of the steps of the test plan once run.
Steps To Reproduce
Click on any step of the test plan that has just been executed and see the resultant screen shot. screenshot
Version
Testsigma Community Edition
The text was updated successfully, but these errors were encountered: