1

I am new to selenoid. On my linux system selenoid and selenoid-ui services are up and running. I am able to run test cases on selenoid also able to view videos and logs on http://:4444/video/ and http://:4444/logs/. Do we have a dashboard where we will have total no of test cases executed, passed, failed, logs etc. As per the links gone through, most of the people have supported use of selenoid over zalenium. why? the url which it provides such as http://:4444/video/ and http://:4444/logs/ are also not well designed.



anuja tol
  • 23
  • 2
  • 7
  • 1
    Have you seen Selenoid UI? http://github.com/aerokube/selenoid-ui – vania-pooh Mar 19 '19 at 13:29
  • Regarding the dashboard - it's not Selenoid responsibility to show you test cases statistics. Use something like Allure report (https://github.com/allure-framework/allure2) for that. – vania-pooh Mar 19 '19 at 13:30

1 Answers1

1
  1. Do we have a dashboard where we will have total no of test cases executed, passed, failed, logs etc?

The selenoid dashboard doesn't have any option to set test result, test counts etc. It only shows videos, logs and the browsers on which the tests are run. The selenoid-ui is open source, so you can customize the dashboard by adding some reports. Please refer to selenoid-ui for development and contrubiting.

  1. As per the links gone through, most of the people have supported use of selenoid over zalenium. why?

If you are going to use many versions of browsers(chrome, opera, firefox), the selenoid is preferable.

Zalenium supports only two latest versions of chrome and firefox, but it also works with could base testing tools(browserstack, saucelabs etc).

Ani Saghatelyan
  • 71
  • 1
  • 1
  • 4