All Questions
24 questions
0
votes
1
answer
550
views
Running Selenium with docker compose -- cannot create session?
I have been trying to connect to the selenium/chrome-standalone docker container, and it is having trouble creating sessions. I keep getting the following error:
21:02:35.263 WARN [...
0
votes
0
answers
37
views
webdriver remote bad configuration?
I'm using docker compose in a VM with only two containers, one is an api (flask) that uses selenium and the other one is the docker image: selenium/standalone-chrome:latest. The problem is when i ...
0
votes
1
answer
189
views
Selenium Grid executed inside Docker doesn't download file automatically
I'm trying to deploy an application that uses Selenium to download PDF files from a web page. If I run my containers locally, the one with my Python application and the other with Selenium Grid, it ...
1
vote
0
answers
30
views
Who to use pass args to to python argparse in docker compose
I'm building a web crawler with selenium and I want to deploy it with selenium. Crawler is composed of two part, a chromedriver instance running in one container and my code who connect to running ...
1
vote
1
answer
457
views
Can't run Selenium inside Docker
Please help me to run Selenium inside Docker. Below is my code which is not working. I am adding error message as well.
Dockerfile:
FROM python:3.8-slim
# Install the Selenium Python bindings
RUN pip ...
0
votes
1
answer
87
views
Python Selenium and Docker
I'm trying to create multiple containers with RPAs using selenium and Python, how can I do this without installing python and its libraries in each container? Like a base container with all ...
0
votes
1
answer
2k
views
Execute Selenium Python Script within Docker
I am trying to run a Selenium script written in Python inside a Docker container via Selenium Grid. Unfortunately I can't manage to configure the remote webdriver.
This is the Docker Compose file:
...
1
vote
1
answer
818
views
Trouble Remotely Connecting Flask App to Selenium Grid using Docker
I am new to both Docker and Selenium grid and am having issues getting my web app to connect to the selenium hub.
docker-compose.yml
version: '3.8'
services:
db:
image: postgres
environment:
...
0
votes
1
answer
374
views
Is it possible to stop a docker container after other docker container inside the same network exits?
I have three docker containers. First container is a Wordpress container which starts a wordpress instance. Second container is a selenium server container created from selenium/standalone-chrome ...
1
vote
1
answer
1k
views
Selenium with Docker : Why KeyError 'status'?
I tried to use selenium with Docker and Docker Compose.
The directory structure and the contents of each file are as follows.
Local directory structure
Desktop
└── selenium_example
├── docker-...
0
votes
1
answer
658
views
How to run selenium inside docker container (python)
Currently trying to learn docker. Cant seem to get selenium working inside container.
My docker compose file looks like this
version: '3.8'
services:
hub:
image: selenium/hub:3.141.59
...
0
votes
1
answer
1k
views
How can I save file from selenium webdriver in conteiner using docker-compose?
I try to save same files from site using selenium whith docker-compose.
When i do .click() on link to downloads file, it mast saved in container /home/seluser/Downloads
but when i try to mount values ...
3
votes
1
answer
2k
views
What's the right way to pass browser profile to selenium inside docker container?
I need to launch selenium inside docker container. It's important to pass browser profile to webdriver.
Here's docker-compose:
version: '2'
services:
worker_main:
build: ./app
volumes:
...
0
votes
1
answer
2k
views
Docker compose selenium connect to another app localhost
I am trying to run selenium tests locally. I have both Selenium Grid / and Fronend set up with docker-compose. However I am having trouble accessing frontend ports as browser.get('http://localhost:...
0
votes
1
answer
1k
views
How to install phantomjs and selenium with docker-compose on linux server?
I am using selenium and phantomjs for my web scraper.
All works great with my test windows app.
Trying to add this code update to my main app, deployed with docker-compose, and i get this:
selenium....