Browser based recorder not recording tests properly

Hello,

I have installed ffmpeg in my docker file as below:
RUN apt-get install unzip ffmpeg -y && a=$(uname -m) && rm -r /tmp/chromedriver/ || true && mkdir /tmp/chromedriver/ -p &&
latest=88.0.4324.96 &&
wget -O /tmp/chromedriver/chromedriver.zip ‘http://chromedriver.storage.googleapis.com/88.0.4324.96/chromedriver_linux64.zip

RUN echo “$PATH:$(which ffmpeg)” > /etc/environment
RUN cat /etc/environment

When i choose the setting only failed test cases it does not record my failed tests:

And when i choose “All Test cases” it only records the first test case.

Is anyone else facing this issue?
Hope to get an answer on this.Thanks

1 Like

Any update on this please.
I cannot get videos of my tests for neither chrome and chrome headless when using browser based recorder.

what am i doing wrong?

Thanks

This is a basic feature which should have worked in an automated tool. Unless i am doing something wrong which can not be right as i atleast got the video of the first test case, i dont think this is actually working. Whats the purpose of this forum if no one going to reply? I know everyone busy but its been two weeks already.

Hi Anuradha,

Thanks for reaching out.

Since we need to have more details to investigate the issue, it may be sensitive information you don’t want to show publicly. Therefore, please consider submitting a ticket on the Katalon Zendesk; our Customer Support team will support that case with more information from your side.

I hope that you will consider it.

Yours sincerely,

Hi @linh.nguyen,

Honestly i dont think its something difficult to replicate.
We have got another case here:
http://forum.katalon.com/t/running-test-in-docker-container-produces-black-video-with-no-screen-video-recording

It was me who started the issue but we have other people getting it.
Anything in docker,jenkins not producing video correctly.
And the browser based recorder does not work in chrome as well.
The browser based need to work for both normal and headless chrome.
If you need any other info you can let me know. I dont have any sensitive info to share as this is not working at all. The video is blank.

Thanks

Hello everyone

Currently, Katalon docker image doesn’t include FFmpeg library. Users can build their own image by following these steps:

  1. Create docker image file with this content:
FROM katalonstudio/katalon

RUN apt-get -y update
RUN apt-get install -y ffmpeg
  1. Build their own image. Eg:
docker build -t mybuild .
  1. Run their docker with Katalon script. Eg:
docker run -t --rm -v "$(pwd)":/tmp/project mybuild katalonc.sh -projectPath=/tmp/project -browserType="Chrome" -retry=0 -statusDelay=15 -testSuitePath="Test Suites/TS_RegressionTest"

Jass

hello @anuradha, I have same behavior than you :
video is created only for the first test_case :

I got only 2 files in my report folder :
image

Anybody knows how to get videos for every test cases in a test suite ?

Hi everyone,

Video is created only for the first test case is a known bug that is fixed in 8.1.0. 8.1.0 will be released around Mid-August. Its beta is here.

Happy testing

Jass

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.