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
0
votes
1 answer

No control over the browser version being used on containers for our test?

Browser comes with selenium image. For different browser version, need to pull different docker image. Suppose I want to run my tests on Chrome Browser's 73.0.3683.86 version, then Can we consider an option of specifying the browser version while…
0
votes
1 answer

Cloud Server Live Preview not working with Zalenium

Im trying to configure testingBot and BrowserStack on Zalenium and everything works fine except the Live Preview. When I am in the Live Preview of Zalenium I can only see the Live Preview of the docker-selenium nodes. I am new with Zalenium and I…
0
votes
3 answers

Can't open dashboard

I'm using Windows and installed Zalenium with the .\prepare.bat Then, when i try o start Zalenium with: docker run --rm -ti --name zalenium -p 4444:4444 -v /var/run/docker.sock:/var/run/docker.sock -v /tmp/videos:/home/seluser/videos --privileged…
0
votes
1 answer

How to get cucumber scenario.getName into Zalenium dashboard?

I´m currently integrating my cucumber jvm/selenium project with zalenium. It´s easy and everything works like charm, but only one little exception. When driver is instantiated for zalenium, I send desired capabilities…
0
votes
2 answers

Unable to connect internet inside the docker containers in MAC machine

I am trying to run tests inside the containers (selenium nodes). I used kubernetes to orchestrate the containers. Tried updating the Docker subnet too Note: Restarting docker didn't help
Prashanth Sams
  • 19,677
  • 20
  • 102
  • 125
0
votes
1 answer

docker saucelabs : invalid reference format

I have gone through this article http://www.testautomationguru.com/selenium-webdriver-disposable-selenium-grid-infrastructure-setup-using-zalenium Integrating with Cloud Testing Platforms: I have already added sauce username and access key in…
paul
  • 4,333
  • 16
  • 71
  • 144
0
votes
1 answer

Zalenium-Node container terminate and restart continuously on using proxy

docker pull elgalu/selenium docker pull dosel/zalenium docker run --rm --name zalenium -p 4444:4444 -v /var/run/docker.sock:/var/run/docker.sock -e "zalenium_http_proxy=http://example.com:80" -e "zalenium_https_proxy=http://example.com:80" -e…
0
votes
1 answer

Zalenium grid container returns 403 forbidden -nginx

I am running selenium tests on the zalenium grid. Currently configured to run 4 grid docker containers to run the Selenium tests. 2 containers seems to run the tests fine against the application URL and 2 other containers return 403 Forbidden from…
Avi
  • 1,453
  • 4
  • 18
  • 43
0
votes
1 answer

How to set zalenium volume accessModes:ReadWriteMany

I'm newbie for docker. I want to shared files with zalenium but how can I pass accessModes:ReadWriteMany? My test case needs to file upload. I run zalenium like below docker run --rm -ti -d --name zalenium -p 4444:4444 -v…
Enes Pekkaya
  • 304
  • 2
  • 3
  • 14
0
votes
2 answers

Capybara tests being run against Zalenium can't find images

I have been working on using Zalenium for running our capybara tests against. The tests run, but I am unable to upload images for testing image uploads. I have mounted the folder with the images in the Zalenium containers and I have checked that…
0
votes
1 answer

Zalenium, cannot use more than 3 containers

I am using zalenium/docker to create a dockerized solution for selenium grid. On first launch time the tests run normally on all created containers(containers are created before test run).However, I am failing to get more than 3 containers to run my…
SokIsKedu
  • 196
  • 1
  • 2
  • 17
0
votes
1 answer

Docker & Zalenium: Unable to start due to invalid reference format error

Really new to docker and docker infrastructure. So from the official Zalenium github page I followed all the steps successfully until I get to the point: docker run --rm -ti --name zalenium -p 4444:4444 \ -v…
TiredOfProgramming
  • 845
  • 2
  • 16
  • 41
-1
votes
2 answers

How to upload file in input file field using Selenium Webdriver when script execution is running on zalenium docker container browser?

I am using Selenium WebDriver for automation. Uploading files in WebDriver is done by simply using the sendKeys() method on the file input field. Code snippet: WebElement uploadElement = driver.findElement(By.id("uploadfile")); // enter the…
-1
votes
2 answers

Does anyone know how to handle browser authentication

I am trying to run the tests using Zalenium but the browser is asking for the credentials, so I am providing the username and password manually. Does anyone know how to handle browser authentication? My project uses Specflow, C# and Selenium
-1
votes
1 answer

Zalenium: Python: Custom Capabilities

I have the below selenium code in python which I'm trying to run on the Zalenium grid. The code works fine and runs on Zalenium grid when I run the code after running the below docker command. What I would like to know is what are the Custom…
VISHVAMBRUTH J T
  • 602
  • 4
  • 14
  • 29