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
0
votes
0 answers

Selenoid - Parallel Testing in Cucumber 4 in Maven using Junit

Well, I am able to launch my Cucumber features in parallel using Maven Surefire Plugin. I am also able to launch these tests remotely in containers using Selenoid as well. However, when I launch my tests, they are only launched in Chrome as per my…
automaticien
  • 153
  • 5
  • 14
0
votes
2 answers

Unable to start selenoid server using docker

404 page not found is displayed while accessing selenoid on http://localhost:4444/ address I am able to access the selenoid UI on 'http://localhost:8080/#/' address content of docker-compose.yml file version: '3' services: selenoid: image:…
0
votes
2 answers

How to integrate selenoid and allure

We implement farm of browsers based on GGR + Selenoid. If there any instruction how to integrate Allure reporting with such infrastructure? On which host allure-results folder will be generated? Should I create a script that will go through each…
Anton
  • 539
  • 6
  • 14
0
votes
1 answer

Selenoid: Chrome Browser starts for few seconds and goes down

Details: 1. The browser comes up for a flash of a second and shuts down causing the next test step which is to set the cookie to fail. Error: UnableToSetCookieError: unable to set cookie (Session info: chrome=77.0.3865.75) at…
Deepti K
  • 590
  • 2
  • 9
  • 26
0
votes
1 answer

Is it possible to adapt Selenium driver for usage with Selenoid?

E.g. I have ready-to-use Perl Selenium driver. https://metacpan.org/release/Selenium-Remote-Driver How to make it compatible with Selenoid and use Selenoid-UI ? As far as I understand, Selenoid is based on Selenium 2.x version. But Selenium and…
Paul Serikov
  • 2,550
  • 2
  • 21
  • 36
0
votes
1 answer

Use custom firefox browser version capability for geckodriver

I build selenoid docker images for firefox myself and have them configured in the browsers.json as follows: "firefox": { "default": "66.0", "versions": { "beta": { "image": "my/path/to/firefox:beta", "port": "4444" …
Carle B. Navy
  • 1,156
  • 10
  • 28
0
votes
1 answer

[selenoid][capybara][rails] Can we use selenoid with Rack App

In Rails when we use capybara with selenium then by default they run the rack server for our rails app and we can test it without running the actual app. So let me explain what does it mean: so when we configure capybara rspec and selenium for rails…
rahul mishra
  • 1,390
  • 9
  • 16
0
votes
2 answers

Selenoid Failed to start

I am absolutely new in selenoid Try to start selenoid using this command: ./cm selenoid start --vnc & get this error: root@ubuntu-s-1vcpu-1gb-fra1-01:~# ./cm selenoid start --vnc Using Docker - Your Docker API version is 1.38 Selenoid is…
0
votes
1 answer

Aerokube Selenoid on AWS ECS

Has anyone been able to configure selenoid on aws ecs ? I am able to run the selenoid-ui container but the selenoid hub image keeps throwing an error regarding the browsers.json however I have not been able to find a way to add the browsers.json…
0
votes
0 answers

WebDriverException: unknown error: unable to unzip 'file'

This question is similar to the one asked here but I'm not sure that the solution is. I'm getting this error when attaching a file called 'PDF_ùâàæ.pdf' using the latest image. unknown error: unable to unzip 'file' from unknown error: archive error:…
0
votes
1 answer

Selenoid: why can't I run specific browser version?

I have the following configuration file browsers.json: { "chrome": { "default": "69.0", "versions": { "60.0": { "image": "selenoid/chrome:60.0", "port": "4444", "path":…
president
  • 503
  • 1
  • 3
  • 18
0
votes
0 answers

Browser session never created when video recoding is enabled

I have a problem that all my browser sessions are "pending" when video recording enabled. After a while i just getting timeout exceptions. /status { "total": 11, "used": 0, "queued": 0, "pending": 2, "browsers": { …
Xotabu4
  • 3,063
  • 17
  • 29
-1
votes
1 answer

Webdriver in Selenoid

I am creating testing of my website in pytest using selenium and selenoid. I have a class that inherits from BaseCase and for example when I want to open a webpage I write super().open(URL). Or, if I want to click on an element I write:…
user613
  • 175
  • 2
  • 10
-1
votes
1 answer

Integrate sikuli with selenoid to handle non html windows/Image based testing

My scripts are working fine locally and same are not working with Chrome browser running in docker container of selenoid. How to integrate sikuli with Selenoid to handle file upload window(non HTML) in chrome browser which is running in docker…
1 2 3
8
9