Questions tagged [zalenium]

Allows anyone to have a disposable, flexible, container based Selenium Grid infrastructure featuring video recording, live preview, basic auth & online/offline dashboards

This is a Selenium Grid extension to scale your local grid dynamically with docker containers. It uses docker-selenium to run your tests in Firefox and Chrome locally, if you need a different browser, your tests can get redirected to a cloud testing provider (Sauce Labs, BrowserStack, TestingBot). Zalenium also works out of the box in Kubernetes.

Zalenium's maintainers add new features regularly. We invite you to test it, report bugs, suggest any ideas you may have, and contribute. See our contributing guidelines for more details.

91 questions
1
vote
1 answer

Zalenium videos stored locally?

In zalenium, As the Videos are displayed in Dashboard, my question is: are these videos stored in Zalenium docker image that we pulled ? or they are stored in local system? If they are stored in local system then how can we access them through file…
1
vote
1 answer

Does selenoid has dashboard like zalenium? and which one is more recommended to use?

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…
anuja tol
  • 23
  • 2
  • 7
1
vote
1 answer

Zalenium: 504 Gateway Time-out in OpenShift environment

My Zalenium installation on an OpenShift environment is far from stable. The web ui (admin view with vnc, dashboard, selenium console) works about 50% of the time and connecting with a RemoteWebDriver doesn't work at all. Error: 504 Gateway…
ner0
  • 95
  • 3
  • 11
1
vote
1 answer

Zalenium with Kubernetes in a HUB - Node Model

I am trying to get Zalenium working with kubernetes, and I wanted to understand if Zalenium with kubernetes works in a hub-node architecture, i.e. can I have my Zalenium container running on one node (or the master ) and my selenium containers in…
1
vote
2 answers

Multiple browser in same Zalenium container

Executing multiple browsers in the same node I wish to launch several nodes that each run several browsers docker run --rm -ti --name zalenium -p 4444:4444 -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/videos:/home/seluser/videos…
1
vote
1 answer

Windows - zalenium file upload

I am working in Zalenium, the execution is running. I have a requirement where I have to upload a file from a Windows machine where my dockers are running in a container. Can anyone help? I will explain the scenario in details if I am not clear
1
vote
2 answers

Zalenium Readiness probe failed: HTTP probe failed with statuscode: 502

I am trying to deploy the zalenium helm chart in my newly deployed aks Kuberbetes (1.9.6) cluster in Azure. But I don't get it to work. The pod is giving the log below: [bram@xforce zalenium]$ kubectl logs -f zalenium-zalenium-hub-6bbd86ff78-m25t2…
bramvdk
  • 1,347
  • 4
  • 21
  • 31
1
vote
1 answer

Run Zalenium Tests from another Docker instance

For our automated testing purposes, I am trying to run UI tests using the Zalenium Docker system. The tests execute on a Jenkins slave, and are executed from a Pipeline script: docker run --rm --name zalenium --detach -p 4444:4444 -v…
ProgRockMicky
  • 101
  • 1
  • 9
1
vote
2 answers

Run Selenium Commands For Zalenium from another Docker Container

Due to my circumstances for the current project I need to use 2 docker images together for selenium testing. One is called Zalenium. I have it up and working via the docker-compose demo. Its basically like the selenium docker repo except that this…
Joseph Astrahan
  • 8,659
  • 12
  • 83
  • 154
0
votes
0 answers

How Can I enable Authentication of username and password on Selenium Grid Hub Url?

I am wondering if we can put the authentication on the selenium grid hub url by asking username and password before entering into the selenium Grid hub ? Can this be also done if we are using the Zalenium grid which internally uses the Selenium Grid…
0
votes
1 answer

Getting "PKIX path building failed" error while running my selenium client code inside docker container

I am connecting to selenium grid to run my selenium tests. The client code is dockerized using the below dockerfile FROM gradle:7.2.0-jdk8 COPY src /home/app/src COPY build.gradle /home/app COPY settings.gradle /home/app COPY Dockerfile…
Susanta Adhikary
  • 257
  • 2
  • 6
  • 20
0
votes
1 answer

Does Zalenium have plan to support other browser like IE, Edge? As per my understanding, currently it supports Chrome and Firefox only

As per my understanding, currently Zalenium supports Chrome and Firefox only. Does Zalenium have plan to support other browsers like IE, Edge too? If yes, is there any roadmap or timeline on this? Thank you
0
votes
1 answer

Unable to launch the zalenium dashboard

currently I am working on Linux elgalu/selenium and dosel/zalenium images are successfully pulled but while running the images by using below command # Run docker run --rm -ti --name zalenium -p 4444:4444 \ -v…
meghana
  • 1
  • 1
0
votes
1 answer

Zalenium: Disable the download popup in the chrome

i am running an automation test via Chrome on Zalenium, in which we try download a pdf file. Unfortunately, when we try to download it, we see the download pop up window, which we cannot handle it due to framework limitations. How can we disable the…
0
votes
1 answer

How to upload multiple files with Selenium RemoteWebDriver?

The method is worked fine when I run tests locally, but when tests are run with a Selenium grid or Zalenium the multiple upload method not works. String path = "a.jpg"; String path1 = "b.jpg"; String path2 = "c.jpg"; element.sendKeys(path + "\n " +…
Norayr Sargsyan
  • 1,737
  • 1
  • 12
  • 26