Questions tagged [selenoid]

Selenium Hub successor running browsers in Docker containers

Selenium Hub successor running browsers in Docker containers https://aerokube.com/selenoid/latest/

134 questions
1
vote
1 answer

Can't connect to the selenoid. Caused by: java.net.ConnectException: Failed to connect to /ip.add.re.ss:80

I have launched selenoid on the my AWS server. I followed official tutorial: https://aerokube.com/cm/latest/ And started selenoid (+ui) in the following way: cm selenoid start --vnc cm selenoid-ui start --port 8081 Ports 4444 and 80 are opened in…
1
vote
1 answer

Bash script unable to communicate with report portal - throws 401

I am getting following error when executing my automated script through jenkins or running bash command from terminal. I am passing report portal credential in jenkins file and tried to pass in mvn command as well (in .sh file) but no success. Can…
Saba Malik
  • 281
  • 3
  • 6
  • 12
1
vote
1 answer

Firefox Webdriver, add website cookies exception?

I have a Selenoid Firefox container running some tests but new browser versions are giving me issues. Since Firefox 103.0 Cross-site tracking cookies are blocked by default and I am looking for a way to add a website exception in Privacy & Security…
Rémy P.A.
  • 21
  • 3
1
vote
0 answers

Importing pfx certificate to selenoid firefox/edge image

I need to import client .pxf certificate inside selenoid container. For chrome I use following Dockerfile: ARG IMAGE_VERSION FROM selenoid/chrome:${IMAGE_VERSION} ARG USER_ID ARG USER_PASSWORD COPY policy.json…
1
vote
1 answer

What's Selenoid video filename

Example - selenoid7a408b66263ee21c5e896514aa938105.mp4 Is there a way to know what name of the file is going to be - to log it for users? (it's not browser session id) Is there a way to give this file a name that I want?
Val Kalinichenko
  • 313
  • 3
  • 11
1
vote
1 answer

Randomly Tests failed with session cannot be created error while running Test cases in selenium grid on docker on linux

While executing the Tests on scheduled jenkins job which are running in selenium grid docker , Randomly a bunch of Tests fail giving following error : Error : cannot create session chrome-91.0-LINUX on any hosts after 1 attempt(s) (WARNING: The…
priya
  • 852
  • 18
  • 39
1
vote
2 answers

SERVICE_STARTUP_FAILED error occurs randomly in a docker compose environment

I'm running tests on a set of jenkins nodes with selenoid in a docker compose and I'm finding that sometimes the tests are failing randomly because selenium does not respond, normally it takes just a few seconds. Looking at the node it seems that it…
1
vote
2 answers

How to setup selenoid with docker-compose

I'm trying to setup selenoid to run inside docker with a docker-compose. I have tried following the guide on https://aerokube.com/selenoid/1.6.0/#_selenoid_with_docker_compose and have produced a docker-compose.yml file looking like this: version:…
Jeggy
  • 1,474
  • 1
  • 19
  • 35
1
vote
1 answer

Selenium-wire does not intercept requests when connecting remotely

I am using Selenoid on a dedicated computer to run browsers. The connection is as follows: from seleniumwire import webdriver chrome_options =…
nosheyakku
  • 316
  • 2
  • 11
1
vote
2 answers

The browsers doesn't start in Selenoid [Capybara, Rspec]

I'm trying to configure capybara + rspec +selenoid, to run tests in headless mode. This is my configuration Capybara.default_max_wait_time = 5 Capybara.javascript_driver = :selenium_chrome_headless Capybara.current_driver =…
Vitalii
  • 113
  • 1
  • 1
  • 11
1
vote
1 answer

Karate + Selenoid: how to get VNC working?

When trying to run the tests using Karate in Selenoid containers - it works, but I can't see what is going on there through the vnc container. When we use Selenoid without Karate we can set driver capabilities "enableVNC":"true" and everything is…
Dmitry
  • 93
  • 1
  • 4
1
vote
1 answer

How to add VM as node to containerized selenoid hub

How to add VM as node to containerized selenoid hub. we have servers with specific configuration setup. We wanted to add these VM servers as Chrome/IE agents to Selenoid Cluster. Could you please help us connecting the VMs as Chrome/IE agents to…
Rohan
  • 73
  • 1
  • 4
1
vote
0 answers

Setting proxy to selenoid webdriver

I connect to a selenoid container with web driver from selenium import webdriver from selenium.webdriver.common.proxy import Proxy, ProxyType proxy = 'proxy address' link = '2ip.ru' capabilities = { "browserName": 'firefox', …
1
vote
0 answers

from unknown error: archive error: (unknown error: could not write file to temp dir), entry error: (unknown error: leftover data after zip entry)

I am running parallel scenarios on remote using selenoid but after some time and after some scenarios got passed, they fail because of following error while file upload. unknown error: unable to unzip 'file' from unknown error: archive error:…
1
vote
3 answers

In Selenium webdriver, for remote Firefox how to use OSS bridge instead of w3c bridge for handshaking

I am using selenoid for remote browser testing in ruby. In that I am using 'selenium-webdriver', 'capybara', 'rspec' for automation. And I am using attach_file method for uploading file to browser I want to upload file on Firefox and Chrome browser…
1
2
3
8 9