Skip to content

admantium-sg/alpine-selenium

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

alpine-selenium

Minimal Selenium Dockerimages based on Alpine Linux. Containers are published on (Dockerhub)[ https://hub.docker.com/u/devcona]

images

  • selenium-hub Container with a Selenium Hub server.
    • Run with docker run -e HUB_PORT=4442 devcona/alpine-selenium-hub
  • chrome-node Container with the Chrome browser, needs a hub to register to.
    • Needs the selenium-hub to run
    • Run with docker run -e HUB_HOST=172.17.0.2 -e HUB_PORT=4442 devcona/alpine-selenium-chrome-node, and pass the selenium hub IP address

what is Selenium?

(Selenium)[https://www.seleniumhq.org/] is a web testing framework in which you write tests that simulate user behavior, for example to browse a page, to click a link, open a popup, filling out a form etc. Selenium provides a the (WebDriver protocol)[https://www.seleniumhq.org/docs/03_webdriver.jsp] with which you can write the tests. Libraries for Java, JavaScript, Python, Ruby and other programming languages exist.

Selenium can be run as a standalone server, or you can create a (Selenium Grid)[https://www.seleniumhq.org/docs/07_selenium_grid.jsp#selenium-grid-2-0]. In a grid, one machine takes the role of a hub, a central server to which you execute the tests and with which you register nodes. Nodes are machines that that run multiple instances of a browser and actually execute the tests.

what is Alpine?

(Alpine)[https://alpinelinux.org/] is a minimal Linux application that only uses 5MB of disk space in its base form. Its based in busybox und musl libc to reduce dependencies to a minimum and provides a resource-effective runtime environment.

About

Minimal Selenium Dockerimages based on Alpine Linux https://hub.docker.com/u/devcona

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published