137 questions
3
votes
1
answer
131
views
How to scale selenoid on several servers?
I have three servers. I want to start selenoid on two servers and use this cluster from the third server.
I am using this code to specify server
if randint(0, 1) == 1:
host = "HOST_1"
...
0
votes
0
answers
45
views
codeceptjs 3 run-workers with 11 worker threads encounter session out or time out problem
Trying to upgrade my test from codeceptjs2 to codeceptjs3 and run lots of test files with run-worker command:
npx codeceptjs run-workers 15 --plugins allure
The command seems to be working very well ...
0
votes
1
answer
117
views
How I need fix error desired capabilities
def new_task(logg): #===Создает заявку в демо2===
> driver = webdriver.Remote(
command_executor=executor,
desired_capabilities=capabilities)
E TypeError: ...
3
votes
2
answers
676
views
Create Selenoid Image With DockerFile
I need to publish a Dockerfile that contains https://aerokube.com/selenoid.
This has to be a Dockerfile so I can publish it to our container registry which will be used as a service container as part ...
0
votes
1
answer
460
views
How to configure and launch Opera capabilities on Selenoid
Maybe somebody run into that problem. I try to launch test in Opera browser on Selenoid (https://aerokube.com/selenoid), but any time with many different version of docker image I got something error ...
0
votes
2
answers
307
views
Jenkins pipeline for parallel cross browser testing
I need to find solution/s for next case. There is selenoid in docker which runs browsers in containers, the tests should be run in parallel for some browsers. I made pipeline in Jenkins for that goal. ...
0
votes
1
answer
636
views
cant use microphone with python selenium chrome driver remoetly ( local run on my pc is ok)
Im Automation developer,
Im trying using python, chrome driver,selenium >> to allow microphone in browser.
when i run my selenium tests locally, it works ok
but when i run it remotely the ...
0
votes
0
answers
376
views
Safari with Selenoid not working with GitLab
I am using Selenoid with GitLab and it's working like a charm for Chrome, Edge and Firefox browsers.
However when it comes to Safari, the scripts are not able to connect to the Safari browser, getting ...
0
votes
0
answers
269
views
Unable to run selenoid tests with gitlab using dind
I am relatively new to gitlab and selenoid.
I have been trying to run my tests on selenoid with gitlab and below is what my gitlab-ci.yml file looks like:
image: maven:3.8-openjdk-11
variables:
...
1
vote
1
answer
313
views
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 ...
0
votes
1
answer
702
views
Can't start simultaneous tests in Selenoid
I'm working at mac with Apple M1 chip.
Images:
aerokube/selenoid:1.10.8
selenoid/firefox:105.0
I'm starting selenoid through
./cm selenoid start — vnc
and selenoid-ui
./cm selenoid-ui start
If I'm ...
1
vote
1
answer
2k
views
How can I check downloaded files with Selenoid?
I'm running some java selenium tests on hosted Selenoid hub and I have to download some files during these tests.
How can I check these files during the tests?
0
votes
1
answer
392
views
Using traefik as a reverse proxy in front of selenoid
Im trying to setup a stand-alone server, running selenoid with traefik in front, to get both https and basic-auth capabilities.
I'm able to get everything running, but I get this error every time I ...
1
vote
1
answer
296
views
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 ...
0
votes
1
answer
324
views
How can I specify Selenoid server for Cypress runs?
I'm trying to utilize an existing Selenoid farm to run Cypress tests, found no relevant docs so far.
Is there any easy way to specify remote browser/browser farm URL in Cypress tests/configuration?
1
vote
0
answers
318
views
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 ...
0
votes
0
answers
799
views
Selenoid browser session not getting created
I have successfully installed Selenoid on my Mac and can view the ui, but when I try run the tests I get "Requested environment is not available" error and I even can't create the sessions ...
0
votes
1
answer
837
views
Selenoid UI is not getting launched on 8081 port when I am creating infrastructure through docker-compose.yml file
docker-compose.yml file
version: '3'
services:
selenoid:
image: "aerokube/selenoid:latest"
container_name: selenoid
ports:
- "4444:4444"
networks:
- ...
0
votes
0
answers
1k
views
Can't run selenium test from Docker container
Please help solve the problem. When running tests using Selenoid directly from the console, the tests work. But when I try to run tests from the container, I encounter the error urllib3.exceptions....
1
vote
1
answer
591
views
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 ...
0
votes
4
answers
705
views
Waiting for One of Two Texts
I'm writing tests in pytest using selenium and selenoid.
I would like to wait and see if one of two texts become visible.
something like this:
wait_for_text(text1 OR text2)
Is there any way to do ...
0
votes
1
answer
63
views
selenoid and specflowplus runner : how do they work togather
I am using selenoid with ggr and 10 hosts. per my understanding ggr devides the load to all the host machine based on quota.
my question is if in .srprofile I have thread count as 5 , will 50 ...
0
votes
1
answer
45
views
Is adding an api interface to an alembic model a bad idea?
I'm using a distributed selenoid cloud infrastructure to distribute my automated tests. In order to keep track of the selenoid instances I have a selenoid table in MySQL which tracks which selenoid ...
3
votes
1
answer
337
views
Is there any way to retain only the failed test's video in Selenoid?
Is there any way to configure Selenoid-video file to detect and delete the passed test videos and retain only failed test videos? if not, rename or tag the failed test video as failed ?
-1
votes
1
answer
150
views
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) ...