Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs: Add instructions on how to run a selenium grid locally using docker #1

Open
ghost opened this issue Sep 23, 2020 · 1 comment
Labels
documentation Improvements or additions to documentation

Comments

@ghost
Copy link

ghost commented Sep 23, 2020

No description provided.

@ghost ghost added the documentation Improvements or additions to documentation label Sep 23, 2020
@ghost
Copy link
Author

ghost commented Sep 28, 2022

Example of running Selenium Grid on a Docker machine:

// run selenium hub
docker run -d -p 4444:4444 --name selenium-hub

// create node for chrome and firefox browsers
docker run -d -P -p 5900:5900 --link selenium-hub:hub -v /dev/shm: /dev/shm selenium/node-chrome

docker run -d -P -p 5901:5901 --link selenium-hub:hub -v /dev/shm: /dev/shm selenium/node-firefox

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

0 participants