Index: System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj
===================================================================
diff -u -rc3f87bf7b8f1655dbf2a9e251b6387275cb81023 -ra742740d5737d9df9b4ff75ba5c642487e0b43db
--- System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision c3f87bf7b8f1655dbf2a9e251b6387275cb81023)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/AutomatedSystemTests.csproj (.../AutomatedSystemTests.csproj) (revision a742740d5737d9df9b4ff75ba5c642487e0b43db)
@@ -2876,10 +2876,14 @@
f9b54cc6-cbb7-406e-99ab-c3c41eee8d0e
a653ace9-5ee8-4659-932a-53a321bc6e32
-
- fa83646c-f7c4-4033-bedc-7007342e4e50
+
+ 33bfacb4-10d7-4c99-ab52-0f94bd94b857
Always
+
+ 375f9762-d4f0-4b72-b4a3-9ef27f445667
+ Always
+
7cc7b432-68fb-4ae4-b844-f84f59230578
Always
@@ -2892,6 +2896,14 @@
6ba120b9-6a1e-4a67-a528-4acd743f4255
Always
+
+ 37d198a5-8e99-4007-86cd-d00257b2dd7e
+ Always
+
+
+ 2fec8cca-cd14-4213-9a79-c04740176d44
+ Always
+
38a629fe-c230-41b4-bad8-6c025199c595
Always
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/howToEnableMozillaFirefoxToOpenReport.png
===================================================================
diff -u -r77e79ccff40612e55d948253c5bf7fa4fa7ff644 -ra742740d5737d9df9b4ff75ba5c642487e0b43db
Binary files differ
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/howToEnableMozillaFirefoxToOpenReportStap1Van2.png
===================================================================
diff -u
Binary files differ
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/howToEnableMozillaFirefoxToOpenReportStap2Van2.png
===================================================================
diff -u
Binary files differ
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithChrome.bat
===================================================================
diff -u -r0d16e71caaa6b47ac23c09cf01c2bbb5b20b9fe5 -ra742740d5737d9df9b4ff75ba5c642487e0b43db
--- System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithChrome.bat (.../openReportWithChrome.bat) (revision 0d16e71caaa6b47ac23c09cf01c2bbb5b20b9fe5)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithChrome.bat (.../openReportWithChrome.bat) (revision a742740d5737d9df9b4ff75ba5c642487e0b43db)
@@ -1,7 +1,7 @@
@ECHO OFF
SET running=0
FOR /f "tokens=*" %%A IN ('tasklist^ /v^| findstr /i /c:"chrome.exe"') DO SET running=1
-IF %running%==1 ECHO Chrome is running! It must be closed before opening the report.
+IF %running%==1 ECHO Chrome is running! Please close it before opening the report.
IF %running%==1 PAUSE
IF %running%==0 ECHO Opening report...
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMicrosoftEdge.bat
===================================================================
diff -u
--- System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMicrosoftEdge.bat (revision 0)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMicrosoftEdge.bat (revision a742740d5737d9df9b4ff75ba5c642487e0b43db)
@@ -0,0 +1,8 @@
+@ECHO OFF
+SET running=0
+FOR /f "tokens=*" %%A IN ('tasklist^ /v^| findstr /i /c:"msedge.exe"') DO SET running=1
+IF %running%==1 ECHO Microsoft Edge is running! Please, close it before opening the report.
+IF %running%==1 PAUSE
+
+IF %running%==0 ECHO Opening report...
+IF %running%==0 FOR /F %%g IN ('dir /b *.html') DO START "" "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe" --allow-file-access-from-files %~dps0%%g
\ No newline at end of file
Index: System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMozillaFirefox.bat
===================================================================
diff -u
--- System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMozillaFirefox.bat (revision 0)
+++ System tests/AutomatedSystemTests/AutomatedSystemTests/ReportDeltaresStyle/openReportWithMozillaFirefox.bat (revision a742740d5737d9df9b4ff75ba5c642487e0b43db)
@@ -0,0 +1,24 @@
+@ECHO OFF
+
+SET logfileDir=%CD%
+ECHO %logfileDir%
+CD /D "%APPDATA%\Mozilla\Firefox\Profiles"
+CD *.default
+SET ffile=%CD%
+FOR /F "tokens=2 delims=,)" %%g IN ('type "%ffile%\prefs.js" ^| findstr "privacy.file_unique_origin"') DO FOR /F %%h IN ('echo %%g') DO SET setting=%%h
+IF "%setting%"=="false" GOTO CanOpen
+
+REM Report cannot be opened
+ECHO Configuration must be changed to enable reading the repport. The option privacy.file_unique_origin must be set to false. Check the file
+ECHO.
+ECHO howToEnableMozillaFirefoxToOpenReport.png
+ECHO.
+ECHO to see how to proceed. Once changed this setting, run again this batch file.
+PAUSE
+GOTO eof
+
+REM Report can be opened
+:CanOpen
+ECHO Opening report...
+CD /D %logfileDir%
+FOR /F %%g IN ('dir /b *.html') DO START "" "%ProgramFiles%\Mozilla Firefox\firefox.exe" -new-window %~dps0%%g