Questions tagged [selenoid]

Selenium Hub successor running browsers in Docker containers

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

86 questions
1
vote
0 answers

how to fix No Internet: ERR_PROXY_CONNECTION_FAILED

started Selenoid ./cm selenoid start --vnc started BMP container docker run -p 58080:8080 -p 58200:8200 --name browser-mob-proxy bwowk/browsermob-proxy started Proxy curl -X POST -d \'port=8081\' http://localhost:58080/proxy creating…
1
vote
2 answers

How to install selenoid on Windows?

I don't understand how can I install selenoid on Windows 10. I'm using this tutorial: https://github.com/aerokube/selenoid/blob/master/docs/selenoid-without-docker.adoc I've downloaded last version of selenoid (v1.7.1) for Windows…
1
vote
1 answer

Is it possible to run Selenoid as a service on Windows Server 2016

I'm setting up Selenoid Windows Server 2016 for IE and Edge browsers. I'm not attempting to dockerise the windows images as I doubt I'd get this past our security team. I've got this running from the command line without any issues, but I have two…
Andrew Sumner
  • 693
  • 1
  • 11
  • 26
1
vote
1 answer

Tests throwing Socket hang up and Session timeout exceptions randomly during test run

I am running UI tests using NightwatchJS v 1.1.11 and Selenoid selenoid is hosted on a t2.micro EC2 instance(evaluation phase hence using t2.micro). Tests randomly fail in the middle of tests for 2 main reasons: 1) socket hang up…
1
vote
0 answers

How to download file in Selenoid using chrome options with Java

I am trying to download a file for chrome browser started on selenoid image. With the chromeoptions i have configured as below, the browser opens up download file dialog box on image and my test case fails. I am trying to find a way to download…
1
vote
0 answers

Running Selenoid Grid and getting periodic ERR_NETWORK_CHANGED on Browser open

We are running Selenoid Grid on a three node cluster (that is also running Kubernetes). Every so often when running some robotframework tests the same test in Chrome browser on the grid we see ERR_NETWORK_CHANGED when we open browser page and test…
MrSteve
  • 489
  • 5
  • 13
1
vote
2 answers

How can I configure the value of `-container-network` in selenoid for every jenkins build?

Every Jenkins build creates a network before running the selenoid tests. e.g., Creating network "jenkinspr613build11_default". The network name is based on the PR and build number. The docker-compose.yaml file, had the below config for selenoid…
Deepti K
  • 530
  • 2
  • 9
  • 22
1
vote
1 answer

How to get Selenoid session ID

I would like to clarify how can I use Selenoid API to check downloaded files. According the documentation to get downloaded file from container I need to call…
1
vote
1 answer

Use Chrome/FF beta version in selenoid

I am using selenoid for automated e2e-testing and really like it. To ensure browser support on all versions, I am testing with different versions of Chrome/FF and now would need to also test with the beta versions of these browsers. I found out here…
Carle B. Navy
  • 1,057
  • 10
  • 24
1
vote
1 answer

I try to use the GGR but it returns "connection refused" using selenoid in local

I have installed selenoid, selenoid-ui, ggr and ggr-ui CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 8628fa3cc58e …
1
vote
1 answer

How to start fileserver on aerokube selenoid docker image

I have followed instructions from the post https://medium.com/@aandryashin/selenium-done-in-60-seconds-176796f8bdc7 to get stated with Selenoid. I was able to get the docker image up and running and connect. 2018/05/07 06:24:15 Loading…
Ajay EP
  • 13
  • 3
1
vote
1 answer

How to get Chrome fullscreen with selenoid vnc

I'm having trouble seeing a fullscreen browser when using VNC with selenoid. I'm running in docker on a linux vagrant VM. I'm using the default commands to start the containers... docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v…
Konzy262
  • 1,819
  • 3
  • 23
  • 45
1
vote
2 answers

NightwatchJS /geckodriver/ selenoid: Error retrieving a new session from the selenium server, while executing test on Firefox,

Setup Information: OS - MacOS HighSierra - 10.13.3 DockerCE for Mac - 17.12.0-ce-mac49 Selenoid, Selenoid-ui - Latest Firefox - 58, geckodriver - 0.191 (0.190,0.170) Chrome - 63, ChromeDriver 2.34.522932 Selenium standalone server - 3.9.1 On Local…
1
vote
2 answers

Docker image specific argument in ECS task definition

I have the below docker run command to launch a container: docker run -d --name selenoid-ui \ --link selenoid \ -p 8080:8080 \ aerokube/selenoid-ui --selenoid-uri=http://selenoid:4444 Manage…
Roshan Chhetri
  • 149
  • 2
  • 9
1
vote
1 answer

Docker ps command output is empty when adding a command to the image.run() section

Environment: docker-plugin version: 1.1.2; jenkins version: 2.0.50727; docker client/server version: 17.12.0-ce; Win 10 Pro x64; Scenario 1: I try to run the Selenoid image via Jenkinsfile with the following command: stage('Start services') { …